We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc62f08 + 547f876 commit 40401f7Copy full SHA for 40401f7
Dockerfile
@@ -17,6 +17,8 @@ COPY . .
17
RUN cargo build --release --target x86_64-unknown-linux-musl --bin cloud-scanner-cli
18
19
FROM alpine AS runtime
20
+#update libcrypto3 libssl3 to fix security issues
21
+RUN apk update && apk add --upgrade libcrypto3 libssl3
22
#RUN addgroup -S myuser && adduser -S myuser -G myuser
23
COPY --from=builder /app/target/x86_64-unknown-linux-musl/release/cloud-scanner-cli /usr/local/bin/
24
#USER myuser
0 commit comments