Skip to content

Commit 397e9cb

Browse files
author
Roberto Bayardo
authored
update Dockerfile for latest op-geth & op-node, and update golang to 1.21 to be consistent with optimism's release dockerfile (#186)
1 parent 0e64099 commit 397e9cb

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.20 as op
1+
FROM golang:1.21 as op
22

33
WORKDIR /app
44

55
ENV REPO=https://github.com/ethereum-optimism/optimism.git
6-
ENV VERSION=v1.4.1
6+
ENV VERSION=v1.5.0
77
# for verification:
8-
ENV COMMIT=54a7dbf8aa9b982f9c6a54cbbe448be41c0b7bc7
8+
ENV COMMIT=6de6b5fc81d8ee03bb776219ba25189a04712f99
99

1010
RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1111
git switch -c branch-$VERSION && \
@@ -14,14 +14,14 @@ RUN git clone $REPO --branch op-node/$VERSION --single-branch . && \
1414
RUN cd op-node && \
1515
make op-node
1616

17-
FROM golang:1.20 as geth
17+
FROM golang:1.21 as geth
1818

1919
WORKDIR /app
2020

2121
ENV REPO=https://github.com/ethereum-optimism/op-geth.git
22-
ENV VERSION=v1.101304.2
22+
ENV VERSION=v1.101305.3
2323
# for verification:
24-
ENV COMMIT=c6b416da212fe6713ff40b8092303d0035405a47
24+
ENV COMMIT=ea3c3044010f97fb3d9affa0dd3c0c2beea85882
2525

2626
# avoid depth=1, so the geth build can read tags
2727
RUN git clone $REPO --branch $VERSION --single-branch . && \

0 commit comments

Comments
 (0)