Skip to content

Commit 445db7f

Browse files
committed
Merge branch 'master' into v3-support
2 parents fec8805 + 828fe09 commit 445db7f

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

rollupcreator/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-bullseye-slim
1+
FROM node:20-bookworm-slim
22
RUN apt-get update && \
33
apt-get install -y git docker.io python3 make gcc g++ curl jq
44
ARG NITRO_CONTRACTS_BRANCH=main
@@ -8,7 +8,7 @@ RUN git checkout ${NITRO_CONTRACTS_BRANCH}
88
RUN yarn install && yarn cache clean
99
RUN curl -L https://foundry.paradigm.xyz | bash
1010
ENV PATH="${PATH}:/root/.foundry/bin"
11-
RUN foundryup
11+
RUN foundryup --install 1.0.0
1212
RUN touch scripts/config.ts
1313
RUN yarn build:all
1414
ENTRYPOINT ["yarn"]

scripts/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Stage 1: Base build environment
2-
FROM node:18-bullseye-slim AS base
2+
FROM node:20-bookworm-slim AS base
33
WORKDIR /workspace
44
COPY ./package.json ./yarn.lock ./
55
RUN yarn

tokenbridge/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:18-bullseye-slim
1+
FROM node:20-bookworm-slim
22
RUN apt-get update && \
33
apt-get install -y git docker.io python3 make gcc g++ curl jq
44
ARG TOKEN_BRIDGE_BRANCH=main

0 commit comments

Comments
 (0)