Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7cc0083

Browse files
committed
fix: add missing && operator in dogfood Dockerfile
The installation of Syft and Cosign in the dogfood Dockerfile was missing an &&operator between commands, causing the build to fail. This commit adds the missingoperator to ensure proper command chaining.Change-Id: I540258ed9638581d7ee704915a2f261d0aed7bebSigned-off-by: Thomas Kosiewski <tk@coder.com>
1 parent3ab1ab6 commit7cc0083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎dogfood/coder/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ RUN curl --silent --show-error --location --output /usr/local/bin/cloud_sql_prox
321321
tar --extract --gzip --directory=/usr/local/bin --file=- trivy && \
322322
# Anchore Syft for SBOM generation
323323
curl --silent --show-error --location"https://github.com/anchore/syft/releases/download/v${SYFT_VERSION}/syft_${SYFT_VERSION}_linux-amd64.tar.gz" | \
324-
tar --extract --gzip --directory=/usr/local/bin --file=- syft \
324+
tar --extract --gzip --directory=/usr/local/bin --file=- syft&&\
325325
# Sigstore Cosign for artifact signing and attestation
326326
curl --silent --show-error --location --output /usr/local/bin/cosign"https://github.com/sigstore/cosign/releases/download/v${COSIGN_VERSION}/cosign-linux-amd64" && \
327327
chmod a=rx /usr/local/bin/cosign

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp