Skip to content
Merged
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
FROM docker.io/rust:1.90.0-slim-bookworm AS cacher
ARG SCCACHE_BUCKET
ARG SCCACHE_REGION
ARG AWS_ACCESS_KEY_ID

Check warning on line 14 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build arm64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_ACCESS_KEY_ID") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 14 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build amd64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_ACCESS_KEY_ID") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ARG AWS_SECRET_ACCESS_KEY

Check warning on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build arm64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_SECRET_ACCESS_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 15 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build amd64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_SECRET_ACCESS_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ARG AWS_SESSION_TOKEN

Check warning on line 16 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build arm64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_SESSION_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 16 in Dockerfile

View workflow job for this annotation

GitHub Actions / Build amd64

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ARG "AWS_SESSION_TOKEN") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
ENV CARGO_INCREMENTAL=0
WORKDIR /app
RUN apt-get update && apt-get install -y \
pkg-config=1.8.1-1 \
libssl-dev=3.0.17-1~deb12u3 \
libssl-dev=3.0.18-1~deb12u2 \
protobuf-compiler=3.21.12-3 \
fuse3=3.14.0-4 \
libfuse3-dev=3.14.0-4 \
Expand Down Expand Up @@ -56,7 +56,7 @@
WORKDIR /app
RUN apt-get update && apt-get install -y \
pkg-config=1.8.1-1 \
libssl-dev=3.0.17-1~deb12u3 \
libssl-dev=3.0.18-1~deb12u2 \
protobuf-compiler=3.21.12-3 \
fuse3=3.14.0-4 \
libfuse3-dev=3.14.0-4 \
Expand Down
Loading