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
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ build-all: build-base-image build-node-24-image build-node-24-python-3-10-image
build-regression-tests-image

build-syft:
docker build -f src/base/.devcontainer/Dockerfile.syft --tag local_syft src/base/.devcontainer/
docker build -f src/base/.devcontainer/Dockerfile.syft --tag local_syft:latest src/base/.devcontainer/
build-grype:
docker build -f src/base/.devcontainer/Dockerfile.grype --tag local_grype src/base/.devcontainer/
docker build -f src/base/.devcontainer/Dockerfile.grype --tag local_grype:latest src/base/.devcontainer/

build-grant:
docker build -f src/base/.devcontainer/Dockerfile.grant --tag local_grant src/base/.devcontainer/
docker build -f src/base/.devcontainer/Dockerfile.grant --tag local_grant:latest src/base/.devcontainer/

build-image: build-syft build-grype build-grant guard-CONTAINER_NAME guard-BASE_VERSION_TAG guard-BASE_FOLDER guard-IMAGE_TAG
workspace_folder="$${CONTAINER_NAME}"; \
Expand Down
6 changes: 3 additions & 3 deletions src/base/.devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM local_syft AS syft-build
FROM local_grype AS grype-build
FROM local_grant AS grant-build
FROM local_syft:latest AS syft-build
FROM local_grype:latest AS grype-build
FROM local_grant:latest AS grant-build
FROM mcr.microsoft.com/devcontainers/base:ubuntu-22.04

ARG SCRIPTS_DIR=/usr/local/share/eps
Expand Down
Loading