Skip to content

Commit 8c27504

Browse files
authored
chore: add curl to docker image (#2596)
The change adds the curl utility to the cross-platform Docker image, which is commonly needed for health checks, debugging, or making HTTP requests from within the container.
1 parent ed549f1 commit 8c27504

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

apps/evm/single/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RUN go mod tidy && CGO_ENABLED=0 GOOS=linux go build -o evm-single .
1414

1515
FROM alpine:3.18.3
1616

17-
RUN apk --no-cache add ca-certificates
17+
RUN apk --no-cache add ca-certificates curl
1818

1919
WORKDIR /root
2020

apps/grpc/single/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN go build -o grpc-single .
2929
FROM alpine:3.19
3030

3131
# Install runtime dependencies
32-
RUN apk add --no-cache ca-certificates
32+
RUN apk add --no-cache ca-certificates curl
3333

3434
# Create non-root user
3535
RUN addgroup -g 1000 ev-node && \

0 commit comments

Comments
 (0)