UNCLASSIFIED

Commit c58254cb authored by Austin Denton's avatar Austin Denton
Browse files

Remove file flagging false positives

parent 7a56f159
Pipeline #257763 passed with stages
in 81 minutes and 36 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