Added wget
This commit is contained in:
parent
326af88de1
commit
bc672c92a3
@ -1,15 +1,18 @@
|
|||||||
FROM quay.io/ansible/awx-ee:0.2.0
|
FROM harbor.ervine.dev/public/x86_64/awx-ee-template:0.2.0
|
||||||
|
|
||||||
ADD requirements_new.txt /tmp/requirements.txt
|
ADD requirements_new.txt /tmp/requirements.txt
|
||||||
ADD bashrc /home/runner/.bashrc
|
ADD bashrc /home/runner/.bashrc
|
||||||
|
|
||||||
RUN ansible-galaxy collection install community.general && \
|
RUN ansible-galaxy collection install community.general && \
|
||||||
pip3 install -r /tmp/requirements.txt && \
|
pip3 install -r /tmp/requirements.txt && \
|
||||||
curl -L https://get.helm.sh/helm-v3.5.4-linux-amd64.tar.gz -o /tmp/helm.tgz && \
|
pip3 uninstall -y ansible-core && \
|
||||||
|
pip3 install ansible-core && \
|
||||||
|
yum install -y wget && \
|
||||||
|
curl -L https://get.helm.sh/helm-v3.6.0-linux-amd64.tar.gz -o /tmp/helm.tgz && \
|
||||||
mkdir /home/runner/bin && \
|
mkdir /home/runner/bin && \
|
||||||
tar -zxvf /tmp/helm.tgz --strip-components=1 -C /home/runner/bin/ linux-amd64/helm && \
|
tar -zxvf /tmp/helm.tgz --strip-components=1 -C /usr/local/bin/ linux-amd64/helm && \
|
||||||
ln -s /home/runner/bin/mariadb-dump /home/runner/bin/mysqldump
|
ln -s /usr/local/bin/mariadb-dump /usr/local/bin/mysqldump
|
||||||
COPY mariadb-dump /home/runner/bin/
|
COPY mariadb-dump /usr/local/bin/
|
||||||
CMD /run.sh
|
CMD /run.sh
|
||||||
USER 1000
|
#USER 1000
|
||||||
RUN git lfs install
|
RUN git lfs install
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user