mirror of
https://github.com/TwiN/gatus.git
synced 2024-12-04 13:55:11 +01:00
20 lines
642 B
Docker
20 lines
642 B
Docker
|
# Build the go application into a binary
|
||
|
FROM golang:alpine as builder
|
||
|
WORKDIR /app
|
||
|
ADD . ./
|
||
|
RUN CGO_ENABLED=0 GOOS=linux go build -mod vendor -a -installsuffix cgo -o bin/gocache-server ./gocacheserver/main
|
||
|
RUN apk --update add --no-cache ca-certificates
|
||
|
|
||
|
FROM scratch
|
||
|
ENV APP_HOME=/app
|
||
|
ENV APP_DATA=/app/data
|
||
|
ENV PORT=6379
|
||
|
ENV MAX_CACHE_SIZE=100000
|
||
|
ENV MAX_MEMORY_USAGE=0
|
||
|
ENV AUTOSAVE="false"
|
||
|
VOLUME ${APP_DATA}
|
||
|
WORKDIR ${APP_HOME}
|
||
|
COPY --from=builder /app/bin/gocache-server ./bin/gocache-server
|
||
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
||
|
EXPOSE ${PORT}
|
||
|
ENTRYPOINT ["/app/bin/gocache-server"]
|