bottin-agenda/Dockerfile

26 lines
411 B
Text
Raw Normal View History

2023-05-29 17:58:23 -04:00
FROM golang:1.20.2 as build
2023-05-29 17:58:23 -04:00
LABEL author="vlbeaudoin"
WORKDIR /go/src/app
2023-05-29 17:58:23 -04:00
COPY go.mod go.sum main.go ./
2023-05-29 17:58:23 -04:00
ADD cmd/ cmd/
ADD data/ data/
ADD handlers/ handlers/
ADD models/ models/
#ADD web/ web/
2023-05-29 17:58:23 -04:00
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin-agenda .
2023-05-29 17:58:23 -04:00
# Alpine
FROM alpine:latest
WORKDIR /app
COPY --from=build /go/src/app/bottin-agenda /usr/bin/bottin-agenda
CMD ["bottin-agenda", "--help"]