We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 856d955 commit c8f9d59Copy full SHA for c8f9d59
Dockerfile
@@ -3,12 +3,14 @@ FROM rustlang/rust:nightly as builder
3
WORKDIR /app
4
COPY . .
5
6
+RUN apt-get update && apt-get install -y libssl-dev pkg-config clang llvm pkg-config nettle-dev libnettle-dev
7
RUN cargo build --release
8
9
FROM debian:buster-slim
10
11
12
13
14
COPY --from=builder /app/target/release/sops-gitops-github-action /usr/local/bin/sops-gitops-github-action
15
16
COPY scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
0 commit comments