Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/container-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Scheduled Container Vulnerability Scan

on:
schedule:
# Weekly scan of main branch mega image every Monday at 06:00 UTC
- cron: '0 6 * * 1'
# Daily scan of main branch mega image at 12:00 UTC
- cron: '0 12 * * *'
workflow_dispatch:
inputs:
test_cve_id:
Expand Down
3 changes: 3 additions & 0 deletions docker/Dockerfile.baseimage
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,14 @@ COPY docker/install-conda-deps.sh /tmp/
# Remove gcloud-crc32c — Go binary compiled with old Go stdlib (CVEs).
# Remove gsutil's vendored urllib3 dummyserver — contains a dummy private key
# that triggers secret-detection scanners (e.g. Trivy).
# Remove cryptography documentation — contains example private keys that
# trigger secret-detection scanners (e.g. Trivy).
# gcloud/gsutil use the conda environment Python, not the bundled one.
RUN /tmp/install-conda-deps.sh /tmp/requirements/baseimage.txt && \
rm -rf /opt/conda/share/google-cloud-sdk-*/platform/bundledpythonunix && \
rm -f /opt/conda/share/google-cloud-sdk-*/bin/gcloud-crc32c && \
rm -rf /opt/conda/share/google-cloud-sdk-*/platform/gsutil/third_party/urllib3/dummyserver && \
rm -rf /opt/conda/lib/python3.12/site-packages/docs && \
rm -rf /tmp/requirements /tmp/install-conda-deps.sh

# Install firecloud via pip instead of conda because the conda noarch
Expand Down
1 change: 1 addition & 0 deletions docker/requirements/baseimage.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jaraco.context>=6.1.0
pyopenssl>=26.0.0
pyasn1>=0.6.3
tornado>=6.5.4
urllib3>=2.7.0
Comment thread
dpark01 marked this conversation as resolved.

# General utilities
csvkit>=1.0.4
Expand Down
Loading