images/helm-chart-collator/Dockerfile
Sidney Shiba ab26e04ae1 Helm Chart Collater image build with Proxy Fix
This patchset fixes the issue where Helm Chart Collator image build was
failing with USE_PROXY=true.

Issue #7

Change-Id: I3db9adabbde69880b56d1b398901cdf684ea75c8
2021-03-25 09:07:43 -05:00

42 lines
1.3 KiB
Docker

FROM ubuntu:focal as chart-collator
SHELL ["bash", "-exc"]
ENV DEBIAN_FRONTEND noninteractive
# Update distro and install ansible and git
RUN apt-get update && \
apt-get dist-upgrade -y && \
apt-get install -y --no-install-recommends \
python3-minimal \
python3-pip \
python3-apt \
python3-setuptools \
openssh-client \
jq \
git && \
pip3 install --upgrade wheel --trusted-host pypi.org \
--trusted-host files.pythonhosted.org && \
pip3 install --upgrade ansible --trusted-host pypi.org \
--trusted-host files.pythonhosted.org && \
pip3 install --upgrade jmespath --trusted-host pypi.org \
--trusted-host files.pythonhosted.org && \
pip3 install --upgrade yq --trusted-host pypi.org \
--trusted-host files.pythonhosted.org && \
rm -rf /var/lib/apt/lists/*
COPY playbooks /opt/playbooks
COPY config /opt/config
ARG CHARTS="/opt/config/charts.yaml"
RUN ansible-playbook -v /opt/playbooks/create_repository.yaml \
-i /opt/playbooks/inventory.yaml \
--extra-vars "CHARTS=$CHARTS"
FROM chartmuseum/chartmuseum:latest
COPY --from=chart-collator /charts /charts
ENTRYPOINT /chartmuseum --debug --port=8080 \
--storage="local" \
--storage-local-rootdir=/charts