-
Notifications
You must be signed in to change notification settings - Fork 17
/
Dockerfile.helm2
44 lines (38 loc) · 1.49 KB
/
Dockerfile.helm2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
ARG HELM_VERSION
ARG S3_PLUGIN_VERSION
ARG GCS_PLUGIN_VERSION
ARG PUSH_PLUGIN_VERSION
FROM golang:latest as setup
ARG HELM_VERSION
ARG S3_PLUGIN_VERSION
ARG GCS_PLUGIN_VERSION
ARG PUSH_PLUGIN_VERSION
RUN echo "HELM_VERSION is set to: ${HELM_VERSION}" && mkdir /temp
RUN curl -L "https://get.helm.sh/helm-v${HELM_VERSION}-linux-amd64.tar.gz" -o helm.tar.gz \
&& tar -zxvf helm.tar.gz \
&& mv ./linux-amd64/helm /usr/local/bin/helm \
&& bash -c 'if [[ "${HELM_VERSION}" == 2* ]]; then helm init --client-only; else echo "using helm3, no need to initialize helm"; fi' \
&& helm plugin install https://github.com/hypnoglow/helm-s3.git --version=${S3_PLUGIN_VERSION} \
&& helm plugin install https://github.com/nouney/helm-gcs.git --version=${GCS_PLUGIN_VERSION} \
&& helm plugin install https://github.com/chartmuseum/helm-push.git --version=${PUSH_PLUGIN_VERSION}
# Run acceptance tests
COPY Makefile Makefile
COPY bin/ bin/
COPY lib/ lib/
COPY build_entrypoint_script build_entrypoint_script
COPY acceptance_tests/ acceptance_tests/
RUN apt-get update \
&& apt-get install -y python3-venv \
&& make acceptance
FROM codefresh/kube-helm:${HELM_VERSION}
ARG HELM_VERSION
COPY --from=setup /temp /root/.helm/* /root/.helm/
COPY bin/* /opt/bin/
RUN chmod +x /opt/bin/*
COPY lib/* /opt/lib/
COPY build_entrypoint_script /opt/build_entrypoint_script
# Install Python3
RUN apk add --no-cache python3 \
&& rm -rf /root/.cache
ENV HELM_VERSION ${HELM_VERSION}
ENTRYPOINT ["/opt/bin/release_chart"]