From b00efde2f0b8994b42879518d671627f1b1601c9 Mon Sep 17 00:00:00 2001 From: hanemile Date: Tue, 11 Dec 2018 23:24:55 +0100 Subject: Corresponding Dockerfile running the service. --- Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Dockerfile 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 -- cgit 1.4.1