mirror of
https://github.com/cooperspencer/gickup
synced 2024-11-08 12:09:18 +01:00
29 lines
925 B
Docker
29 lines
925 B
Docker
FROM golang:1.21-alpine as builder
|
|
|
|
# Install dependencies for copy
|
|
RUN apk add -U --no-cache ca-certificates tzdata git
|
|
|
|
# Use an valid GOPATH and copy the files
|
|
WORKDIR /go/src/github.com/cooperspencer/gickup
|
|
COPY go.mod .
|
|
COPY go.sum .
|
|
RUN go mod tidy
|
|
COPY . .
|
|
|
|
# Fetching dependencies and build the app
|
|
RUN go get -d -v ./...
|
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -o gickup .
|
|
|
|
# Use scratch as production environment -> Small builds
|
|
FROM scratch as production
|
|
WORKDIR /
|
|
# Copy valid SSL certs from the builder for fetching github/gitlab/...
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
|
|
# Copy zoneinfo for getting the right cron timezone
|
|
COPY --from=builder /usr/share/zoneinfo /usr/share/zoneinfo
|
|
# Copy the main executable from the builder
|
|
COPY --from=builder /go/src/github.com/cooperspencer/gickup/gickup /gickup/gickup
|
|
|
|
ENTRYPOINT [ "/gickup/gickup" ]
|
|
CMD [ "/gickup/conf.yml" ]
|