Skip to content

Commit a868513

Browse files
committed
fix(Dockerfile): add missing curl dependency in runner image
Ensures the runner image includes curl, which is required for certain functionalities.
1 parent 0c73551 commit a868513

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ RUN TARGETARCH=${TARGETARCH} \
4646
FROM debian:bookworm-slim AS runner
4747
ARG TARGETARCH
4848

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

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

0 commit comments

Comments
 (0)