Initial commit

This commit is contained in:
Victor Lacasse-Beaudoin 2023-02-17 17:28:47 -05:00
commit 6ca6852389
8 changed files with 151 additions and 0 deletions

21
Dockerfile Normal file
View file

@ -0,0 +1,21 @@
FROM golang:1.19.1 as build
LABEL author="vlbeaudoin"
WORKDIR /go/src/app
COPY go.mod go.sum main.go server.go ./
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o app .
# Alpine
FROM alpine:3.17.1
RUN apk update && apk add file --no-cache && apk upgrade --no-cache
WORKDIR /app
COPY --from=build /go/src/app ./
CMD ["./app"]