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
1 change: 1 addition & 0 deletions op-batcher/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ COPY ./op-node /app/op-node
COPY ./op-proposer /app/op-proposer
COPY ./op-service /app/op-service
COPY ./op-batcher /app/op-batcher
COPY ./.git /app/.git

WORKDIR /app/op-batcher

Expand Down
1 change: 1 addition & 0 deletions op-chain-ops/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ COPY ./op-chain-ops/docker.go.work /app/go.work
COPY ./op-chain-ops /app/op-chain-ops
COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./.git /app/.git

WORKDIR /app/op-chain-ops

Expand Down
1 change: 1 addition & 0 deletions op-node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./op-chain-ops /app/op-chain-ops
COPY ./op-service /app/op-service
COPY ./.git /app/.git

WORKDIR /app/op-node

Expand Down
1 change: 1 addition & 0 deletions op-proposer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ COPY ./op-bindings /app/op-bindings
COPY ./op-node /app/op-node
COPY ./op-proposer /app/op-proposer
COPY ./op-service /app/op-service
COPY ./.git /app/.git

WORKDIR /app/op-proposer

Expand Down
9 changes: 9 additions & 0 deletions ops/scripts/tag-bedrock-go-modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ go get github.com/ethereum-optimism/optimism/op-service@$VERSION
go get github.com/ethereum-optimism/optimism/op-chain-ops@$VERSION
go mod tidy

echo Please update the version to ${VERSION} in op-node/version/version.go
read -p "Press [Enter] key to continue"

git add .
git commit -am 'chore: Upgrade op-node dependencies'
git push $BEDROCK_TAGS_REMOTE
Expand All @@ -48,6 +51,9 @@ go get github.com/ethereum-optimism/optimism/op-service@$VERSION
go get github.com/ethereum-optimism/optimism/op-node@$VERSION
go mod tidy

echo Please update the version to ${VERSION} in op-proposer/cmd/main.go
read -p "Press [Enter] key to continue"

git add .
git commit -am 'chore: Upgrade op-proposer dependencies'
git push $BEDROCK_TAGS_REMOTE
Expand All @@ -61,6 +67,9 @@ go get github.com/ethereum-optimism/optimism/op-node@$VERSION
go get github.com/ethereum-optimism/optimism/op-proposer@$VERSION
go mod tidy

echo Please update the version to ${VERSION} in op-batcher/cmd/main.go
read -p "Press [Enter] key to continue"

git add .
git commit -am 'chore: Upgrade op-batcher dependencies'
git push $BEDROCK_TAGS_REMOTE
Expand Down