2515878eeb
* Remove unnecessary todos * Set option to log commands in shell scripts * Replace fixturenet-eth dependency with wait on endpoint * Skip lighthouse node dependency check * Update all services in the stack * Use debug flag to enable shell commands logging * Add bash in op-batcher container * Update mobymask-v2 instructions * Update fixturenet-optimism instructions * Add descriptions for services * Move ts files to container-build * Take L1 RPC endpoint from the env file * Add dev mode restriction for editing env file
23 lines
488 B
Docker
23 lines
488 B
Docker
FROM cerc/foundry:local
|
|
|
|
# Install node (local foundry is a debian based image)
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl \
|
|
&& curl --silent --location https://deb.nodesource.com/setup_16.x | bash - \
|
|
&& apt-get update \
|
|
&& apt-get install -y nodejs git busybox jq \
|
|
&& node -v
|
|
|
|
RUN corepack enable \
|
|
&& yarn --version
|
|
|
|
WORKDIR /app
|
|
|
|
# Copy optimism repo contents
|
|
COPY . .
|
|
|
|
RUN echo "Building optimism" && \
|
|
yarn && yarn build
|
|
|
|
WORKDIR /app/packages/contracts-bedrock
|