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 . ./
|
2019-09-14 23:25:59 +00:00
|
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -mod vendor -a -installsuffix cgo -o gatus .
|
|
|
|
|
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
|
2019-12-04 22:10:04 +00:00
|
|
|
ENV PORT=8080
|
|
|
|
EXPOSE ${PORT}
|
2020-11-16 14:19:12 +00:00
|
|
|
ENTRYPOINT ["/gatus"]
|