nucypher/deploy/docker/Dockerfile

13 lines
203 B
Docker
Raw Normal View History

2018-10-27 17:04:31 +00:00
FROM python:3.7.0-slim-stretch
# Update
RUN apt update -y && apt upgrade -y
RUN apt install gcc libffi-dev wget -y
2018-12-14 16:09:45 +00:00
WORKDIR /code
COPY . /code
2018-10-27 17:04:31 +00:00
2019-12-05 01:44:12 +00:00
RUN pip3 install . -r requirements.txt
2018-10-27 17:04:31 +00:00
CMD ["/bin/bash"]