Skip to content

Commit 5e523b4

Browse files
authored
fix: failed to read s3 bucket in dockerfile install ca-certificates (#1843)
1 parent e5a7a47 commit 5e523b4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile.e2hs-writer

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ RUN cargo build --release --locked -p e2hs-writer
2222
FROM ubuntu AS runtime
2323
WORKDIR /app
2424

25+
RUN apt-get update && apt-get install -y ca-certificates
26+
2527
# copy build artifacts from build stage
2628
COPY --from=builder /app/target/release/e2hs-writer /usr/bin/
2729

28-
ENV RUST_LOG=debug
29-
3030
ENTRYPOINT ["/usr/bin/e2hs-writer"]

0 commit comments

Comments
 (0)