about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..54ad0ee
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,13 @@
+FROM golang:latest
+
+# Setup the work directory
+WORKDIR /home
+
+# Copy the files to the WORKDIR
+COPY main.go /home/main.go
+
+# Install go packages
+RUN ["go", "get", "github.com/gorilla/mux"]
+
+# Start the webserver
+ENTRYPOINT ["go", "run", "/home/main.go"]
\ No newline at end of file