Skip to content

Commit 2b7ba7b

Browse files
authored
fix(uptime): Add curl to deploy image (#287)
We added this to builder before, but it needs to be in the deploy container
1 parent 69648c2 commit 2b7ba7b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ RUN apk add --no-cache \
88
g++ \
99
pkgconfig \
1010
openssl-dev \
11-
curl \
1211
protoc
1312

1413
# Configure cargo
@@ -45,7 +44,7 @@ FROM alpine:3.20
4544

4645
COPY --from=builder /app/target/release/uptime-checker /usr/local/bin/uptime-checker
4746

48-
RUN apk add --no-cache tini libgcc && \
47+
RUN apk add --no-cache tini libgcc curl && \
4948
addgroup -S app && \
5049
adduser -S app -G app
5150

0 commit comments

Comments
 (0)