summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile10
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..c46730b
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,10 @@
+FROM golang:latest
+
+WORKDIR /home
+
+COPY * /home/
+
+RUN go get github.com/gorilla/mux
+RUN go get git.darknebu.la/Satellite/tle
+
+ENTRYPOINT go run . -p 8080