mirror of
https://github.com/TwiN/gatus.git
synced 2024-11-07 16:44:25 +01:00
1e431c797a
* chore(deps): bump github.com/TwiN/deepmerge from 0.2.0 to 0.2.1 Bumps [github.com/TwiN/deepmerge](https://github.com/TwiN/deepmerge) from 0.2.0 to 0.2.1. - [Release notes](https://github.com/TwiN/deepmerge/releases) - [Commits](https://github.com/TwiN/deepmerge/compare/v0.2.0...v0.2.1) --- updated-dependencies: - dependency-name: github.com/TwiN/deepmerge dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * build: Add `go mod tidy` in Dockerfile * ci: Update Go to 1.20 * Update go.mod * Update test.yml --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: TwiN <twin@linux.com>
21 lines
684 B
Docker
21 lines
684 B
Docker
# Build the go application into a binary
|
|
FROM golang:alpine as builder
|
|
RUN apk --update add ca-certificates
|
|
WORKDIR /app
|
|
COPY . ./
|
|
RUN go mod tidy
|
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o gatus .
|
|
|
|
# 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
|
|
|
|
# Run the binary on an empty container
|
|
FROM scratch
|
|
COPY --from=builder /app/gatus .
|
|
COPY --from=builder /app/config.yaml ./config/config.yaml
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
ENV PORT=8080
|
|
EXPOSE ${PORT}
|
|
ENTRYPOINT ["/gatus"]
|