Skip to content

Commit cec59c0

Browse files
repro build - dockerfile update
1 parent 98f5203 commit cec59c0

4 files changed

Lines changed: 15 additions & 8 deletions

File tree

framework/meta/Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
# Toolchain versions — bump these together when upgrading.
44
ARG VERSION_RUST="1.93.0"
5-
ARG VERSION_SC_META="0.65.1"
5+
ARG VERSION_SC_META="0.66.0"
66
ARG VERSION_WASM_OPT="0.116.1"
77
ARG TARGETPLATFORM
88

99
# Install system dependencies
10-
RUN apt-get update --fix-missing && apt-get install -y \
10+
RUN apt-get update --fix-missing && apt-get install -y --no-install-recommends \
11+
ca-certificates \
1112
wget \
1213
build-essential \
1314
git \

framework/meta/Dockerfile.local

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:22.04
1+
FROM ubuntu:24.04
22

33
# Toolchain versions — bump these together when upgrading.
44
ARG VERSION_RUST="1.93.0"
@@ -7,7 +7,8 @@ ARG VERSION_WASM_OPT="0.116.1"
77
ARG TARGETPLATFORM
88

99
# Install system dependencies
10-
RUN apt-get update --fix-missing && apt-get install -y \
10+
RUN apt-get update --fix-missing && apt-get install -y --no-install-recommends \
11+
ca-certificates \
1112
wget \
1213
build-essential \
1314
git \
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ WORKSPACE_ROOT="$(cd "$SCRIPT_DIR/../.." && pwd)"
1111

1212
docker build \
1313
--platform linux/amd64 \
14+
--progress=plain \
15+
--no-cache \
1416
-f "$SCRIPT_DIR/Dockerfile.local" \
15-
-t multiversx/sc-meta-reproducible-build:local \
16-
"$WORKSPACE_ROOT"
17+
-t multiversx/sdk-rust-contract-builder:v12.0.0-alpha \
18+
"$WORKSPACE_ROOT"
19+
20+
21+
docker push multiversx/sdk-rust-contract-builder:v12.0.0-alpha

framework/meta/docker-build-released.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
88
docker build \
99
--platform linux/amd64 \
1010
-f "$SCRIPT_DIR/Dockerfile" \
11-
-t multiversx/sc-meta-reproducible-build:0.65.1 \
11+
-t multiversx/sdk-rust-contract-builder:v12.0.0-alpha \
1212
"$SCRIPT_DIR"

0 commit comments

Comments
 (0)