Skip to content

Commit 55daa37

Browse files
committed
dockerfile: add web3 to the image aswell
1 parent 0237680 commit 55daa37

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

Dockerfile

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,17 @@ WORKDIR /usr/src/app
88
RUN apt-get update && apt-get install -y libssl-dev
99

1010
# Copy over requirements
11-
COPY setup.py .
12-
COPY README.md .
1311
COPY requirements-dev.txt .
14-
1512
# Install python dependencies
1613
RUN pip install -r requirements-dev.txt
14+
15+
COPY web3 ./web3/
16+
COPY tests ./tests/
17+
COPY ens ./ens/
18+
19+
COPY setup.py .
20+
COPY README.md .
21+
1722
RUN pip install -e .
1823

1924
WORKDIR /code

0 commit comments

Comments
 (0)