Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: docker images #433

Merged
merged 2 commits into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ This image contains all the npm dependencies and zkevm contracts compiled for a
Build the `zkevm-contracts` image.

```bash
version="v9.0.0-rc.2-pp-fork.12"
version="v8.0.0-rc.4-fork.12"
docker build . \
--tag local/zkevm-contracts:$version \
--build-arg ZKEVM_CONTRACTS_BRANCH=$version \
Expand All @@ -81,8 +81,8 @@ Check the size of the image.

```bash
$ docker images --filter "reference=local/zkevm-contracts"
REPOSITORY TAG IMAGE ID CREATED SIZE
local/zkevm-contracts v9.0.0-rc.2-pp-fork.12 bdf8225cfa77 7 minutes ago 2.54GB
REPOSITORY TAG IMAGE ID CREATED SIZE
local/zkevm-contracts v8.0.0-rc.4-fork.12 bdf8225cfa77 7 minutes ago 2.54GB
```

(Optional) Push image to the Docker Hub.
Expand Down
2 changes: 1 addition & 1 deletion docker/toolbox.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@ RUN apt-get update \
&& pipx ensurepath \
&& pipx install yq \
&& curl --silent --location --proto "=https" https://foundry.paradigm.xyz | bash \
&& /root/.foundry/bin/foundryup --version ${FOUNDRY_VERSION} \
&& /root/.foundry/bin/foundryup --install ${FOUNDRY_VERSION} \
&& cp /root/.foundry/bin/* /usr/local/bin
2 changes: 1 addition & 1 deletion docker/zkevm-contracts.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ RUN apt-get update \
&& pipx ensurepath \
&& pipx install yq \
&& curl --silent --location --proto "=https" https://foundry.paradigm.xyz | bash \
&& /root/.foundry/bin/foundryup --version ${FOUNDRY_VERSION} \
&& /root/.foundry/bin/foundryup --install ${FOUNDRY_VERSION} \
&& cp /root/.foundry/bin/* /usr/local/bin

USER node
Loading