added dockerfile

This commit is contained in:
Sven Vogel 2023-11-24 23:42:05 +01:00
parent 9912389ea7
commit f55717de17
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM golang:1.20-alpine
WORKDIR /usr/src/app
# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod index-inlined-minified.html main.go ./
RUN go mod download && go mod verify
RUN go build -v -o /usr/local/bin/app ./...
ENV PORT=8000
ENV BIND=0.0.0.0
CMD ["app"]