Commit 9e7d6d38 authored by Matthew Slipper's avatar Matthew Slipper Committed by GitHub

op-deployer: Update dockerfile (#12979)

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.
parent 0933da49
FROM debian:bookworm-20240812-slim
ENTRYPOINT ["/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
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment