Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .changeset/wicked-mugs-admire.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@eth-optimism/integration-tests': patch
'@eth-optimism/builder': patch
'@eth-optimism/batch-submitter': patch
'@eth-optimism/data-transport-layer': patch
'@eth-optimism/message-relayer': patch
---

Update to node.js version 16
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.batch-submitter
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache curl bash jq

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.data-transport-layer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache curl bash jq

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.deployer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache git curl python3 bash jq

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.integration-tests
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache git curl python3 bash jq

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.message-relayer
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache curl bash jq

Expand Down
4 changes: 2 additions & 2 deletions ops/docker/Dockerfile.monorepo
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# ### BASE: Install deps
# We do not use Alpine because there's a regression causing it to be very slow
# when used with typescript/hardhat: https://github.com/nomiclabs/hardhat/issues/1219
FROM node:14-buster-slim as node
FROM node:16-buster-slim as node
RUN apt-get update -y && apt-get install -y git

# Pre-download the compilers so that they do not need to be downloaded inside
Expand Down Expand Up @@ -37,7 +37,7 @@ COPY integration-tests/package.json ./integration-tests/package.json
RUN yarn install --frozen-lockfile

### BUILDER: Builds the typescript
FROM node
FROM node:16

WORKDIR /optimism

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.packages
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# ### BASE: Install deps
# We do not use Alpine because there's a regression causing it to be very slow
# when used with typescript/hardhat: https://github.com/nomiclabs/hardhat/issues/1219
FROM node:14.18.1-buster-slim as base
FROM node:16.13-buster-slim as base

RUN apt-get update -y && apt-get install -y git curl jq python3

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.regenesis-surgery
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

RUN apk add --no-cache curl bash jq

Expand Down
2 changes: 1 addition & 1 deletion ops/docker/Dockerfile.replica-healthcheck
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG LOCAL_REGISTRY=docker.io
ARG BUILDER_TAG=latest
FROM ${LOCAL_REGISTRY}/ethereumoptimism/builder:${BUILDER_TAG} AS builder

FROM node:14-alpine
FROM node:16-alpine

WORKDIR /opt/optimism

Expand Down