UNCLASSIFIED

Commit 933c8904 authored by Adam Martin's avatar Adam Martin
Browse files

Merge branch 'update-to-2.0.2' into 'development'

Remove file flagging false positives

See merge request !16
parents ebac74b8 c58254cb
Pipeline #383812 passed with stages
in 68 minutes and 58 seconds
...@@ -20,6 +20,7 @@ COPY *.whl *.tar.gz /local/wheels/ ...@@ -20,6 +20,7 @@ COPY *.whl *.tar.gz /local/wheels/
RUN source /opt/bitnami/airflow/venv/bin/activate && \ RUN source /opt/bitnami/airflow/venv/bin/activate && \
for f in $(ls -l /local/wheels | awk '{print $9}' |sed '/^$/d'); do pip install --no-index --no-deps /local/wheels/$f; done && \ for f in $(ls -l /local/wheels | awk '{print $9}' |sed '/^$/d'); do pip install --no-index --no-deps /local/wheels/$f; done && \
find /opt/bitnami/airflow/venv/lib/python3.8/site-packages -name "*.pem" -o -name "*.key" | egrep ".*test.*/.*\.pem|.*test.*/.*\.key" | xargs rm -f && \ find /opt/bitnami/airflow/venv/lib/python3.8/site-packages -name "*.pem" -o -name "*.key" | egrep ".*test.*/.*\.pem|.*test.*/.*\.key" | xargs rm -f && \
rm /opt/bitnami/airflow/venv/lib/python3.8/site-packages/tensorflow/include/external/local_config_python/python_include/patchlevel.h && \
rm -rf /local/* && \ rm -rf /local/* && \
dnf -y remove gcc && \ dnf -y remove gcc && \
dnf clean all && \ dnf clean all && \
......
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