mirror of
https://github.com/helm/chartmuseum.git
synced 2026-02-05 15:45:50 +01:00
14 lines
325 B
Docker
14 lines
325 B
Docker
FROM alpine:latest
|
|
|
|
# TARGETARCH is predefined by Docker
|
|
# See https://docs.docker.com/engine/reference/builder/#automatic-platform-args-in-the-global-scope
|
|
ARG TARGETARCH
|
|
|
|
RUN apk add --no-cache cifs-utils ca-certificates
|
|
|
|
COPY ./_dist/linux-$TARGETARCH/chartmuseum /chartmuseum
|
|
|
|
USER 1000:1000
|
|
|
|
ENTRYPOINT ["/chartmuseum"]
|