Skip to content
Open
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
9 changes: 9 additions & 0 deletions Tests/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ FROM python:3.10

WORKDIR /scs-compliance

ARG SONOBUOY_VERSION=0.57.3
ARG TARGETOS
ARG TARGETARCH

RUN set -eux; \
wget -qO- https://github.com/vmware-tanzu/sonobuoy/releases/download/v$SONOBUOY_VERSION/sonobuoy_${SONOBUOY_VERSION}_${TARGETOS}_${TARGETARCH}.tar.gz \
| tar -xz -C /usr/local/bin; \
chmod +x /usr/local/bin/sonobuoy

COPY requirements.txt requirements.txt
COPY iaas/requirements.txt iaas-requirements.txt
COPY kaas/requirements.txt kaas-requirements.txt
Expand Down