mirror of
https://github.com/openfaas/faas.git
synced 2025-06-08 16:26:47 +00:00
28 lines
789 B
Docker
28 lines
789 B
Docker
FROM ghcr.io/openfaas/classic-watchdog:0.2.0 as watchdog
|
|
|
|
FROM golang:1.13-alpine as builder
|
|
ENV CGO_ENABLED=0
|
|
|
|
MAINTAINER alex@openfaas.com
|
|
ENTRYPOINT []
|
|
|
|
WORKDIR /go/src/github.com/openfaas/faas/sample-functions/DockerHubStats
|
|
COPY . /go/src/github.com/openfaas/faas/sample-functions/DockerHubStats
|
|
RUN set -ex && apk add make && make install
|
|
|
|
FROM alpine:3.16.0 as ship
|
|
|
|
# Needed to reach the hub
|
|
RUN apk --no-cache add ca-certificates
|
|
|
|
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
|
|
RUN chmod +x /usr/bin/fwatchdog
|
|
COPY --from=builder /go/bin/DockerHubStats /usr/bin/DockerHubStats
|
|
ENV fprocess "/usr/bin/DockerHubStats"
|
|
|
|
RUN addgroup -g 1000 -S app && adduser -u 1000 -S app -G app
|
|
USER 1000
|
|
|
|
HEALTHCHECK --interval=5s CMD [ -e /tmp/.lock ] || exit 1
|
|
CMD ["/usr/bin/fwatchdog"]
|