File tree Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Expand file tree Collapse file tree 1 file changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,11 @@ RUN rustup component add rustfmt --toolchain nightly
14
14
RUN cargo build --release --bin timeboost
15
15
16
16
# Non-root app container stage
17
- FROM debian:bullseye -slim
17
+ FROM debian:bookworm -slim
18
18
19
19
WORKDIR /app
20
20
21
- RUN apt update && apt-get install -y libcurl4
21
+ RUN apt update && apt-get install -y libcurl4 openssl
22
22
23
23
# Create non-root user and group
24
24
RUN groupadd -r appgroup && useradd -r -g appgroup timeboostuser
@@ -36,11 +36,5 @@ USER timeboostuser
36
36
# Set the log level to debug by default
37
37
ENV RUST_LOG=${RUST_LOG:-sailfish=debug,timeboost=debug,cliquenet=error}
38
38
39
- EXPOSE ${TIMEBOOST_SAILFISH_PORT}
40
- EXPOSE ${TIMEBOOST_DECRYPT_PORT}
41
- EXPOSE ${TIMEBOOST_CERTIFIER_PORT}
42
- EXPOSE ${TIMEBOOST_RPC_PORT}
43
- EXPOSE ${TIMEBOOST_METRICS_PORT}
44
-
45
39
# Run the timeboost binary
46
40
CMD ["/app/timeboost" ]
You can’t perform that action at this time.
0 commit comments