Skip to content

Commit

Permalink
fix: docker
Browse files Browse the repository at this point in the history
  • Loading branch information
Ubuntu committed Aug 30, 2024
1 parent 9f2ffdb commit 6338052
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
- "programs/**"
- "native-host/**"
- "zkvm-host/**"
- "op-succinct-proposer/**"
- "proposer/succinct/**"
- "Cargo.toml"
merge_group:

Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ hex = "0.4.3"
client-utils = { path = "crates/client-utils" }
host-utils = { path = "crates/host-utils" }
zkvm-host = { path = "zkvm-host" }
op-succinct-proposer = { path = "op-succinct-proposer" }
op-succinct-proposer = { path = "proposer/succinct" }

# ethereum
alloy = { version = "0.2", default-features = false, features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion proposer/op/Dockerfile.op_proposer
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y \
COPY --from=optimism-builder /optimism/op-proposer/proposer/bin/op-proposer /usr/local/bin/op-proposer

# Set the entrypoint to run op-proposer with environment variables
COPY ./op-succinct-proposer/op_proposer.sh /usr/local/bin/op_proposer.sh
COPY ./proposer/op/op_proposer.sh /usr/local/bin/op_proposer.sh

# Make the binary and entrypoint executable.
RUN ls -l /usr/local/bin/
Expand Down
2 changes: 1 addition & 1 deletion proposer/op/Dockerfile.span_batch_server
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ ENV PATH="${GOPATH}/bin:${PATH}"
# Set up Go environment
WORKDIR /app

# Copy the local op-proposer-go directory
# Copy the local proposer/op directory
COPY ./proposer/op /app/op-proposer-go

# Change to the server directory and build the application
Expand Down
2 changes: 1 addition & 1 deletion proposer/succinct/COST_ESTIMATOR.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ just

Then start the host in the background.
```bash
docker build -t span_batch_server -f op-succinct-proposer/Dockerfile.span_batch_server .
docker build -t span_batch_server -f proposer/op/Dockerfile.span_batch_server .
docker run -p 8080:8080 -d span_batch_server
```

Expand Down

0 comments on commit 6338052

Please sign in to comment.