[go: up one dir, main page]

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

add anvil and docker build caching #1544

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ build/
coverage.xml
dist/
docs/_build
node_modules/
venv*/
env/
*egg-info/
Expand All @@ -19,4 +20,4 @@ env/

# Personnal
.env
c_pytest.py
c_pytest.py
45 changes: 33 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,42 @@
FROM python:3.7
FROM ghcr.io/foundry-rs/foundry:nightly as foundry

# Set up code directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
FROM python:3.9

# Install linux dependencies
RUN apt-get update \
&& apt-get install -y libssl-dev npm
RUN --mount=type=cache,target=/var/lib/apt/lists \
apt-get update \
&& apt-get install --no-install-recommends -y curl libssl-dev

# install node v18 for ganache and hardhat
# c22ac94432765ecaa9b4c462b9a7f8dd509071da is v8.2.0
RUN --mount=type=cache,target=/root/.cache \
curl -L https://raw.githubusercontent.com/tj/n/c22ac94432765ecaa9b4c462b9a7f8dd509071da/bin/n -o /usr/local/bin/n \
&& chmod 755 /usr/local/bin/n \
&& n 18 \
&& npm set cache /root/.cache/npm --global \
&& npm install -g npm@latest

# install ganache
RUN --mount=type=cache,target=/root/.cache \
npm install --verbose --global "ganache@7.2.0"

# prepare python dependencies
RUN --mount=type=cache,target=/root/.cache \
pip install --upgrade pip wheel setuptools

RUN npm install n -g \
&& npm install -g npm@latest
RUN npm install -g ganache
# install anvil
COPY --from=foundry /usr/local/bin/anvil /usr/local/bin/

# install python dependencies
WORKDIR /usr/src/app
COPY requirements.txt .
COPY requirements-dev.txt .
RUN --mount=type=cache,target=/root/.cache \
pip install -r requirements.txt

RUN pip install -r requirements.txt
RUN pip install -r requirements-dev.txt
COPY requirements-dev.txt .
RUN --mount=type=cache,target=/root/.cache \
pip install -r requirements-dev.txt

# Set up code directory
# use docker volumes to mount brownie's code at /code
WORKDIR /code
4 changes: 3 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,6 @@ services:
context: .
volumes:
- .:/code
command: tail -f /dev/null
command: tail -f /dev/null
# TODO: load this from an environment variable so M1 macs can easily use this
platform: linux/x86_64
Comment on lines +9 to +10
Copy link
Collaborator Author
@BlinkyStitt BlinkyStitt May 27, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I need to figure out the best way to do this. Without it, M1 macs will see /lib64/ld-linux-x86-64.so.2: No such file or directory but this will break anyone on other platforms