Skip to content

Commit

Permalink
clients (op): optimistic-specs -> monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
tuxcanfly authored and mslipper committed Sep 8, 2022
1 parent 004ddaf commit e4a8971
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions clients/ops-bss/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM golang:1.18.0-alpine3.15 as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git jq bash

RUN git clone https://github.com/ethereum-optimism/optimistic-specs /app
RUN git clone https://github.com/ethereum-optimism/optimism /app

WORKDIR /app
WORKDIR /app/op-batcher
RUN make op-batcher

FROM alpine:3.15
Expand Down
4 changes: 2 additions & 2 deletions clients/ops-l1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh

# Deploy contracts using Hardhat
RUN git clone https://github.com/ethereum-optimism/optimistic-specs /opt
RUN git clone https://github.com/ethereum-optimism/optimism /opt
RUN cd /opt && git submodule init && git submodule update
RUN cp -r /opt/packages/contracts /hive/contracts
RUN cp -r /opt/contracts-bedrock /hive/contracts
# Defer until L1 rpc server is up; called from devnet.go
ADD deploy.sh /hive-bin/deploy.sh
RUN chmod +x /hive-bin/deploy.sh
Expand Down
6 changes: 3 additions & 3 deletions clients/ops-l2os/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ FROM golang:1.18.0-alpine3.15 as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git jq bash

RUN git clone https://github.com/ethereum-optimism/optimistic-specs /app
RUN git clone https://github.com/ethereum-optimism/optimism /app

WORKDIR /app
RUN make op-proposer
WORKDIR /app/op-proposer
RUN make

FROM alpine:3.15

Expand Down
4 changes: 2 additions & 2 deletions clients/ops-opnode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ FROM golang:1.18.0-alpine3.15 as builder

RUN apk add --no-cache make gcc musl-dev linux-headers git jq bash

RUN git clone https://github.com/ethereum-optimism/optimistic-specs /app
RUN git clone https://github.com/ethereum-optimism/optimism /app

WORKDIR /app
WORKDIR /app/op-node
RUN make op-node

FROM alpine:3.15
Expand Down

0 comments on commit e4a8971

Please sign in to comment.