This commit is contained in:
Fritz Schaal 2022-02-07 12:24:45 +01:00
commit 93a139fee3
2 changed files with 10 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM alpine:edge AS env
COPY --chmod=755 docker-entrypoint.sh /
RUN mkdir /helm/ && chmod 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" ]

3
docker-entrypoint.sh Executable file
View File

@ -0,0 +1,3 @@
#!/bin/ash
helm "$@"