26 lines
436 B
Docker
26 lines
436 B
Docker
FROM golang:1.21.4 as build
|
|
|
|
LABEL author="vlbeaudoin"
|
|
|
|
WORKDIR /go/src/app
|
|
|
|
COPY go.mod go.sum main.go ./
|
|
|
|
ADD cmd/ cmd/
|
|
ADD data/ data/
|
|
ADD handlers/ handlers/
|
|
ADD models/ models/
|
|
ADD responses/ responses/
|
|
ADD web/ web/
|
|
|
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin-agenda .
|
|
|
|
# Alpine
|
|
|
|
FROM alpine:latest
|
|
|
|
WORKDIR /app
|
|
|
|
COPY --from=build /go/src/app/bottin-agenda /usr/bin/bottin-agenda
|
|
|
|
CMD ["bottin-agenda", "--help"]
|