Skip to content

Commit c02fe9d

Browse files
author
Devdutt Shenoi
committed
fix: docker liveness check requires curl
1 parent b37f5c8 commit c02fe9d

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

Dockerfile.debug

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ RUN cargo build
3434
# final stage
3535
FROM docker.io/debian:bookworm-slim
3636

37+
RUN apt update && apt install -y curl
38+
3739
WORKDIR /parseable
3840

3941
# Copy the static binary into the final image

docker-compose-distributed-test-with-kafka.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ services:
5757
parseable-query:
5858
build:
5959
context: .
60-
dockerfile: Dockerfile
60+
dockerfile: Dockerfile.debug
6161
platform: linux/amd64
6262
command: [ "parseable", "s3-store" ]
6363
ports:

docker-compose-distributed-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ services:
2828
parseable-query:
2929
build:
3030
context: .
31-
dockerfile: Dockerfile
31+
dockerfile: Dockerfile.debug
3232
platform: linux/amd64
3333
command: [ "parseable", "s3-store" ]
3434
ports:
@@ -64,7 +64,7 @@ services:
6464
parseable-ingest-one:
6565
build:
6666
context: .
67-
dockerfile: Dockerfile
67+
dockerfile: Dockerfile.debug
6868
platform: linux/amd64
6969
command: [ "parseable", "s3-store", ]
7070
ports:

docker-compose-test-with-kafka.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ services:
149149
kafka-log-generator:
150150
build:
151151
context: ./scripts
152-
dockerfile: Dockerfile
152+
dockerfile: Dockerfile.debug
153153
environment:
154154
- KAFKA_BROKERS=kafka-0:9092
155155
- KAFKA_TOPIC=test-logs-stream

docker-compose-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ services:
2727
parseable:
2828
build:
2929
context: .
30-
dockerfile: Dockerfile
30+
dockerfile: Dockerfile.debug
3131
platform: linux/amd64
3232
command: [ "parseable", "s3-store", ]
3333
ports:

0 commit comments

Comments
 (0)