gitea-sonarqube-bot/contrib/Dockerfile
justusbunsi 1f6fe0d4bc
Bump golang to 1.18
Signed-off-by: Steven Kriegler <sk.bunsenbrenner@gmail.com>
2022-05-14 01:42:42 +02:00

16 lines
339 B
Docker

FROM golang:1.18-alpine3.15
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"]