2019-09-14 23:25:59 +00:00
|
|
|
# Build the go application into a binary
|
2021-03-05 05:49:58 +00:00
|
|
|
FROM golang:alpine as builder
|
2020-11-16 14:19:12 +00:00
|
|
|
RUN apk --update add ca-certificates
|
2019-09-14 23:25:59 +00:00
|
|
|
WORKDIR /app
|
2020-11-16 14:19:12 +00:00
|
|
|
COPY . ./
|
2024-03-07 01:37:42 +00:00
|
|
|
RUN go mod tidy
|
2022-11-16 02:58:24 +00:00
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gatus .
|
2019-09-14 23:25:59 +00:00
|
|
|
|
2020-11-14 14:55:37 +00:00
|
|
|
# Run Tests inside docker image if you don't have a configured go environment
|
|
|
|
#RUN apk update && apk add --virtual build-dependencies build-base gcc
|
|
|
|
#RUN go test ./... -mod vendor
|
|
|
|
|
2019-09-14 23:25:59 +00:00
|
|
|
# Run the binary on an empty container
|
|
|
|
FROM scratch
|
|
|
|
COPY --from=builder /app/gatus .
|
2019-12-28 17:55:00 +00:00
|
|
|
COPY --from=builder /app/config.yaml ./config/config.yaml
|
2019-09-14 23:25:59 +00:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2024-11-14 04:54:00 +00:00
|
|
|
ENV GATUS_CONFIG_PATH=""
|
|
|
|
ENV GATUS_LOG_LEVEL="INFO"
|
|
|
|
ENV PORT="8080"
|
2019-12-04 22:10:04 +00:00
|
|
|
EXPOSE ${PORT}
|
2020-11-16 14:19:12 +00:00
|
|
|
ENTRYPOINT ["/gatus"]
|