26 lines
382 B
Text
26 lines
382 B
Text
|
FROM golang:1.20.2 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 web/ web/
|
||
|
|
||
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o bottin .
|
||
|
|
||
|
# Alpine
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
COPY --from=build /go/src/app/bottin /usr/bin/bottin
|
||
|
|
||
|
CMD ["bottin", "--help"]
|