Skip to content

Commit

Permalink
Install local package in dockerfile (algorand#165)
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonpaulos authored Nov 30, 2020
1 parent bdfc195 commit f5ed5ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM python:3.7.7
FROM python:3.7.9

# Copy SDK code into the container
RUN mkdir -p $HOME/py-algorand-sdk
COPY . $HOME/py-algorand-sdk
WORKDIR $HOME/py-algorand-sdk

# SDK dependencies, and source version of behave with tag expression support
RUN pip3 install git+https://github.com/algorand/py-algorand-sdk/ -q \
RUN pip install . -q \
&& pip install git+https://github.com/behave/behave -q

# Run integration tests
Expand Down

0 comments on commit f5ed5ac

Please sign in to comment.