Skip to content

Commit

Permalink
fix(Dockerfile): add missing curl dependency in runner image
Browse files Browse the repository at this point in the history
Ensures the runner image includes curl, which is required
for certain functionalities.
  • Loading branch information
steebchen committed Dec 18, 2024
1 parent 0c73551 commit a868513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ RUN TARGETARCH=${TARGETARCH} \
FROM debian:bookworm-slim AS runner
ARG TARGETARCH

RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates libzstd1 libgmp10 tini && rm -rf /var/lib/apt/lists/*
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y ca-certificates libzstd1 libgmp10 tini curl && rm -rf /var/lib/apt/lists/*
RUN groupadd --gid 1000 pathfinder && useradd --no-log-init --uid 1000 --gid pathfinder --no-create-home pathfinder

COPY --from=rust-builder /usr/src/pathfinder/pathfinder-${TARGETARCH} /usr/local/bin/pathfinder
Expand Down

0 comments on commit a868513

Please sign in to comment.