bottin/Dockerfile

23 lines
416 B
Docker
Raw Permalink Normal View History

FROM golang:1.23.0 as build
2023-03-06 14:01:18 -05:00
LABEL author="vlbeaudoin"
2023-03-06 14:01:18 -05:00
WORKDIR /go/src/app
COPY go.mod go.sum client.go client_test.go cmd.go config.go db.go entity.go main.go request.go response.go routes.go template.go ./
2023-03-06 14:01:18 -05:00
2024-06-06 01:40:56 -04:00
ADD sql/ sql/
ADD templates/ templates/
2023-03-06 14:01:18 -05:00
2024-06-06 01:40:56 -04:00
RUN CGO_ENABLED=0 go build -a -o bottin .
2023-03-06 14:01:18 -05:00
# Alpine
2024-06-06 01:40:56 -04:00
FROM alpine:3.20
WORKDIR /app
COPY --from=build /go/src/app/bottin /usr/bin/bottin
CMD ["bottin", "--help"]