UNCLASSIFIED

Commit 9b760ce7 authored by Casey Spicer's avatar Casey Spicer
Browse files

fixed perl yum conflict

parent 545d3481
Pipeline #291101 passed with stages
in 24 minutes and 30 seconds
...@@ -13,14 +13,14 @@ COPY --from=multi-stage /opt/python /opt/python ...@@ -13,14 +13,14 @@ COPY --from=multi-stage /opt/python /opt/python
ENV PATH="/opt/python/venv/bin:$PATH" ENV PATH="/opt/python/venv/bin:$PATH"
USER root USER root
#Workaround for perl issue preventing yum upgrade
RUN yum remove -y perl-threads
RUN yum upgrade -y \ RUN yum upgrade -y \
&& yum clean all -y \ && yum clean all -y \
&& yum install -y \ && yum install -y \
vim \ vim \
zip \ zip \
unzip \ unzip \
wget \
net-tools \ net-tools \
# gcc is needed for prophet # gcc is needed for prophet
gcc-c++ \ gcc-c++ \
...@@ -61,6 +61,7 @@ RUN rm -rf /usr/share/doc/perl-IO-Socket-SSL/certs/ \ ...@@ -61,6 +61,7 @@ RUN rm -rf /usr/share/doc/perl-IO-Socket-SSL/certs/ \
&& rm -rf /usr/share/doc/perl-IO-Socket-SSL/example/ \ && rm -rf /usr/share/doc/perl-IO-Socket-SSL/example/ \
&& rm -rf /usr/share/doc/perl-IO-Socket-SSL/example/ \ && rm -rf /usr/share/doc/perl-IO-Socket-SSL/example/ \
&& rm -rf /usr/share/doc/perl-Net-SSLeay/examples/server_key.pem \ && rm -rf /usr/share/doc/perl-Net-SSLeay/examples/server_key.pem \
&& rm -rf /opt/python/venv/lib/python3.8/site-packages/tornado/test/test.key \
&& chmod g-s /usr/libexec/openssh/ssh-keysign && chmod g-s /usr/libexec/openssh/ssh-keysign
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment