-
Notifications
You must be signed in to change notification settings - Fork 169
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge pull request #8242 from ethereum-optimism/go-docker-tar…
- Loading branch information
1 parent
3dc4bff
commit d972c46
Showing
18 changed files
with
219 additions
and
154 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
ARG OP_STACK_GO_BUILDER=us-docker.pkg.dev/oplabs-tools-artifacts/images/op-stack-go:latest | ||
FROM $OP_STACK_GO_BUILDER as builder | ||
# See "make golang-docker" and /ops/docker/op-stack-go | ||
|
||
FROM alpine:3.18 | ||
|
||
COPY --from=builder /usr/local/bin/op-batcher /usr/local/bin/op-batcher | ||
|
||
CMD ["op-batcher"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# ignore everything but the dockerfile, the op-stack-go base image performs the build | ||
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
ARG OP_STACK_GO_BUILDER=us-docker.pkg.dev/oplabs-tools-artifacts/images/op-stack-go:latest | ||
FROM $OP_STACK_GO_BUILDER as builder | ||
# See "make golang-docker" and /ops/docker/op-stack-go | ||
|
||
FROM alpine:3.18 | ||
|
||
# Make the bundled op-program the default cannon server | ||
COPY --from=builder /usr/local/bin/op-program /usr/local/bin/op-program | ||
ENV OP_CHALLENGER_CANNON_SERVER /usr/local/bin/op-program | ||
|
||
# Make the bundled cannon the default cannon executable | ||
COPY --from=builder /usr/local/bin/cannon /usr/local/bin/cannon | ||
ENV OP_CHALLENGER_CANNON_BIN /usr/local/bin/cannon | ||
|
||
COPY --from=builder /usr/local/bin/op-challenger /usr/local/bin/op-challenger | ||
|
||
CMD ["op-challenger"] |
Oops, something went wrong.