Skip to content

Commit 82800e3

Browse files
infra: fix docker images build error (#11443)
1 parent 2785921 commit 82800e3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

deployments/images/sequencer/Dockerfile

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ FROM ubuntu:24.04 AS final_stage
4242
ARG BUILD_MODE=release
4343
ENV BUILD_MODE=${BUILD_MODE}
4444

45-
# Required for https requests
46-
RUN apt-get update && apt-get install -y ca-certificates
47-
# Required for starknet-native-compile
48-
RUN apt-get install -y binutils libc6-dev
45+
# Required for https requests: ca-certificates
46+
# Required for starknet-native-compile: binutils libc6-dev
47+
RUN apt-get update && apt-get install -y ca-certificates binutils libc6-dev
4948

5049
ENV ID=1001
5150
WORKDIR /app

0 commit comments

Comments
 (0)