-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
592d26b
commit 7c4d020
Showing
6 changed files
with
43 additions
and
27 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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM golang:alpine | ||
# Use the official Go image as the base image | ||
FROM golang:alpine AS run-op-batcher | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /app | ||
|
||
COPY Dockerfile.run-op-batcher /app/ | ||
# Copy the source code for 10_run_op-batcher | ||
COPY cmd/10_run_op-batcher /app/ | ||
|
||
RUN ["sh", "go run cmd/10_run_op-batcher/main.go"] | ||
# Define the command to run when the container starts | ||
CMD ["go run cmd/10_run_op-batcher/main.go "] |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM golang:alpine | ||
# Use the official Go image as the base image | ||
FROM golang:alpine AS run-op-geth | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /app | ||
|
||
COPY Dockerfile.run-op-geth /app/ | ||
# Copy the source code for 8_run_op-geth | ||
COPY cmd/8_run_op-geth /app/ | ||
|
||
RUN ["sh", "go run cmd/8_run_op-geth/main.go"] | ||
# Define the command to run when the container starts | ||
CMD ["go run cmd/8_run_op-geth/main.go"] |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM golang:alpine | ||
# Use the official Go image as the base image | ||
FROM golang:alpine AS run-op-node | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /app | ||
|
||
COPY Dockerfile.run-op-node /app/ | ||
# Copy the source code for 9_run_op-node | ||
COPY cmd/9_run_op-node /app/ | ||
|
||
RUN ["sh", "go run cmd/9_run_op-node/main.go"] | ||
# Define the command to run when the container starts | ||
CMD ["go run cmd/9_run_op-node/main.go "] |
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 |
---|---|---|
@@ -1,7 +1,11 @@ | ||
FROM golang:alpine | ||
# Use the official Go image as the base image | ||
FROM golang:alpine AS run-op-proposer | ||
|
||
# Set the working directory inside the container | ||
WORKDIR /app | ||
|
||
COPY Dockerfile.run-op-proposer /app/ | ||
# Copy the source code for 11_run_op-proposer | ||
COPY cmd/11_run_op-proposer /app/ | ||
|
||
RUN ["sh", "go run cmd/11_run_op-proposer/main.go"] | ||
# Define the command to run when the container starts | ||
CMD ["go run cmd/11_run_op-proposer/main.go"] |