added Dockerfile

This commit is contained in:
Johannes Theiner 2020-07-20 18:06:32 +02:00
parent 005169f973
commit cbdec85904
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM golang:1.14.6-alpine3.12
RUN mkdir /src
ADD . /src
WORKDIR /src
RUN go mod download
RUN go build -o main .
CMD["/app/main"]