gitea-sonarqube-bot/contrib/Dockerfile
justusbunsi 2fa3ec8197
Prepare Helm Chart release
- Auto-generate parameters documentation
  - Provide required `make` commands
  - Update contribution environment to match new requirements

Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
2022-05-14 01:10:07 +02:00

16 lines
339 B
Docker

FROM golang:1.17-alpine3.14
RUN apk --no-cache add build-base git bash curl openssl npm
RUN curl -fsSL -o ./get_helm.sh https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 \
&& chmod 700 ./get_helm.sh \
&& ./get_helm.sh \
&& rm ./get_helm.sh
WORKDIR /projects
VOLUME ["/projects"]
EXPOSE 3000
CMD ["bash"]