Skip to content

Commit 3d4c33c

Browse files
authored
Set health port to 7000, install curl (#88)
* install curl in dockerfile * set health port to 7000
1 parent 6b61fca commit 3d4c33c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

backend/Dockerfile_build_and_publish

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ RUN apt-get update && apt-get install -y \
3333
libzstd1 \
3434
libhugetlbfs0 \
3535
ca-certificates \
36+
curl \
3637
&& rm -rf /var/lib/apt/lists/*
3738

3839
# Set working directory

backend/src/bin/backend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub struct Cli {
1919
#[arg(short, long, default_value = "127.0.0.1:3000")]
2020
server_addr: String,
2121

22-
#[arg(long, default_value = "127.0.0.1:4000")]
22+
#[arg(long, default_value = "127.0.0.1:7000")]
2323
health_server_addr: String,
2424
}
2525

0 commit comments

Comments
 (0)