Initial commit

This commit is contained in:
Maxim Samoilov
2020-07-07 12:12:13 +03:00
commit cd8dd67e5b
16 changed files with 256 additions and 0 deletions

9
app/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM golang:1.14
WORKDIR /app
COPY . .
RUN go build -o app
CMD /app/app