Skip to content

Commit

Permalink
adding system dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
casibbald committed Jan 3, 2025
1 parent 856d955 commit c8f9d59
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ FROM rustlang/rust:nightly as builder
WORKDIR /app
COPY . .

RUN apt-get update && apt-get install -y libssl-dev pkg-config clang llvm pkg-config nettle-dev libnettle-dev
RUN cargo build --release

FROM debian:buster-slim

WORKDIR /app

RUN apt-get update && apt-get install -y libssl-dev pkg-config clang llvm pkg-config nettle-dev libnettle-dev
COPY --from=builder /app/target/release/sops-gitops-github-action /usr/local/bin/sops-gitops-github-action

COPY scripts/entrypoint.sh /usr/local/bin/entrypoint.sh
Expand Down

0 comments on commit c8f9d59

Please sign in to comment.