12 lines
326 B
Docker
12 lines
326 B
Docker
FROM alpine:edge AS env
|
|
COPY --chmod=755 docker-entrypoint.sh /
|
|
RUN mkdir -vp \
|
|
/helm/.cache/helm \
|
|
/helm/.config/helm \
|
|
/helm/.local/share/helm \
|
|
&& chmod -R 777 /helm
|
|
WORKDIR /helm
|
|
RUN apk update
|
|
RUN apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing helm
|
|
ENTRYPOINT [ "/docker-entrypoint.sh" ]
|