Commit 5d3895a 1 parent c800502 commit 5d3895a Copy full SHA for 5d3895a
File tree 12 files changed +14
-14
lines changed
12 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 1
- v18.8 .0
1
+ v18.19 .0
Original file line number Diff line number Diff line change 1
1
FROM 278380418400 . dkr . ecr . eu -west -2 . amazonaws . com /barretenberg -x86_64 -linux -clang -assert
2
2
FROM 278380418400 . dkr . ecr . eu -west -2 . amazonaws . com /noir -acir -tests as noir -acir -tests
3
3
4
- FROM node :18 -alpine
4
+ FROM node :18.19.0 -alpine
5
5
RUN apk update && apk add git bash curl jq coreutils
6
6
COPY --from = 0 /usr /src /barretenberg /cpp /build /usr /src /barretenberg /cpp /build
7
7
COPY --from = noir -acir -tests /usr /src /noir /test_programs /usr /src /noir /test_programs
Original file line number Diff line number Diff line change 1
1
FROM 278380418400. dkr . ecr . eu - west - 2. amazonaws . com / bb . js
2
2
FROM 278380418400. dkr . ecr . eu - west - 2. amazonaws . com / noir - acir - tests as noir - acir - tests
3
3
4
- FROM node :18
4
+ FROM node :18.19 .0
5
5
COPY -- from = 0 / usr / src / barretenberg / ts / usr / src / barretenberg / ts
6
6
COPY -- from = noir - acir - tests / usr / src / noir / test_programs / usr / src / noir / test_programs
7
7
RUN apt update && apt install - y lsof jq
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/barretenberg-x86_64-linux-clan
2
2
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/barretenberg-x86_64-linux-clang-sol
3
3
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/noir-acir-tests as noir-acir-tests
4
4
5
- FROM node:18-alpine
5
+ FROM node:18.19.0 -alpine
6
6
RUN apk update && apk add git bash curl jq
7
7
COPY --from=0 /usr/src/barretenberg/cpp/build /usr/src/barretenberg/cpp/build
8
8
COPY --from=1 /usr/src/barretenberg/sol/src/ultra/BaseUltraVerifier.sol /usr/src/barretenberg/sol/src/ultra/BaseUltraVerifier.sol
Original file line number Diff line number Diff line change 1
1
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/barretenberg-wasm-linux-clang
2
2
3
- FROM node:18-alpine
3
+ FROM node:18.19.0 -alpine
4
4
COPY --from=0 /usr/src/barretenberg /usr/src/barretenberg
5
5
6
6
# Create a standalone container that can run bb.js (and tests).
Original file line number Diff line number Diff line change 1
1
# Linting requires node.
2
- FROM node:18-alpine
2
+ FROM node:18.19.0 -alpine
3
3
RUN apk update && apk add --no-cache build-base git python3 curl bash jq
4
4
WORKDIR /usr/src/l1-contracts
5
5
COPY . .
Original file line number Diff line number Diff line change 3
3
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/yarn-project AS yarn-project
4
4
5
5
# Need new arch specific image.
6
- FROM node:18-alpine AS builder
6
+ FROM node:18.19.0 -alpine AS builder
7
7
RUN apk add bash jq --no-cache
8
8
COPY --from=yarn-project /usr/src /usr/src
9
9
WORKDIR /usr/src/yarn-project
@@ -18,5 +18,5 @@ RUN yarn workspaces focus @aztec/cli @aztec/aztec-sandbox @aztec/aztec-faucet --
18
18
RUN rm -rf /usr/src/noir/target
19
19
20
20
# Create fresh minimal size image.
21
- FROM node:18-alpine
21
+ FROM node:18.19.0 -alpine
22
22
COPY --from=builder /usr/src /usr/src
Original file line number Diff line number Diff line change 1
- FROM node:18-alpine AS builder
1
+ FROM node:18.19.0 -alpine AS builder
2
2
3
3
RUN apk update && apk add --no-cache bash jq curl
4
4
@@ -20,7 +20,7 @@ WORKDIR /usr/src/canary
20
20
RUN ./scripts/update_packages.sh canary ../end-to-end/
21
21
RUN yarn && yarn build
22
22
23
- FROM node:18-alpine
23
+ FROM node:18.19.0 -alpine
24
24
RUN apk update && apk add --no-cache udev ttf-freefont chromium bash
25
25
ENV CHROME_BIN="/usr/bin/chromium-browser" PUPPETEER_SKIP_CHROMIUM_DOWNLOAD="true"
26
26
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ WORKDIR /usr/src/yarn-project/canary
3
3
# Productionify. See comment in yarn-project-base/Dockerfile.
4
4
RUN yarn cache clean && yarn workspaces focus --production
5
5
6
- FROM node:18-alpine
6
+ FROM node:18.19.0 -alpine
7
7
COPY --from=builder /usr/src /usr/src
8
8
WORKDIR /usr/src/yarn-project/canary
9
9
ENTRYPOINT ["yarn", "test"]
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ RUN yarn workspaces focus --production && yarn cache clean
10
10
11
11
# Create final, minimal size image.
12
12
# TODO: Not very minimal as chromium adds about 500MB of bloat :/ Separate or install at test runtime?
13
- FROM node:18-alpine
13
+ FROM node:18.19.0 -alpine
14
14
RUN apk update && apk add --no-cache \
15
15
jq \
16
16
bash \
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/bb.js as bb.js
47
47
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/noir as noir
48
48
FROM 278380418400.dkr.ecr.eu-west-2.amazonaws.com/noir-packages as noir-packages
49
49
50
- FROM node:18-alpine
50
+ FROM node:18.19.0 -alpine
51
51
RUN apk update && apk add --no-cache bash jq curl
52
52
53
53
# Copy L1 contracts.
Original file line number Diff line number Diff line change 1
- FROM node:18-alpine
1
+ FROM node:18.19.0 -alpine
2
2
WORKDIR /usr/src
3
3
COPY . .
4
4
RUN yarn && yarn build --no-minify
You can’t perform that action at this time.
0 commit comments