Files
katenary/oci/builder/Containerfile
Patrice Ferlet e9ad85a0ac chore(make): Split and enhancements
- split Makefile in several sub files
- use a separated container for tests
-
2025-08-03 14:15:35 +02:00

9 lines
215 B
Docker

ARG GOVERSION=1.24
FROM docker.io/golang:${GOVERSION}
# install helm
RUN set -xe; \
apt-get update && apt-get install -y curl; \
curl https://raw.githubusercontent.com/helm/helm/main/scripts/get-helm-3 | bash