initial testing

This commit is contained in:
2022-11-29 23:04:15 +01:00
parent 8978817634
commit 31a225a3dd
2 changed files with 33 additions and 0 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM golang:1.19.3-alpine
WORKDIR /gothub
COPY . .
RUN go mod download
RUN go build .
CMD ["/bin/sh", "-c", "./gothub"]
EXPOSE 3000