Skip to content

Commit

Permalink
op-deployer: Update dockerfile (#12979)
Browse files Browse the repository at this point in the history
Update the op-deployer Dockerfile to install CA certificates and symlink /op-deployer into /usr/local/bin so that it's on the container's PATH.
  • Loading branch information
mslipper authored Nov 19, 2024
1 parent 0933da4 commit 9e7d6d3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion op-deployer/Dockerfile.default
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
FROM debian:bookworm-20240812-slim
ENTRYPOINT ["/op-deployer"]
COPY op-deployer /op-deployer
COPY op-deployer /op-deployer

# Install ca-certificates so that HTTPS requests work
RUN apt-get update && apt-get install -y ca-certificates

# Symlink onto the PATH
RUN ln -s /op-deployer /usr/local/bin/op-deployer

0 comments on commit 9e7d6d3

Please sign in to comment.