mirror of https://github.com/nucypher/nucypher.git
18 lines
341 B
Docker
18 lines
341 B
Docker
FROM python:3.7.0-slim-stretch
|
|
|
|
# Update
|
|
RUN apt update -y && apt upgrade -y
|
|
RUN apt install gcc libffi-dev wget -y
|
|
|
|
# Set the working directory to /app
|
|
WORKDIR /code
|
|
|
|
# Copy the current directory contents into the container at /app
|
|
COPY . /code
|
|
|
|
# Run pipenv
|
|
RUN pip3 install .
|
|
RUN ./scripts/installation/install_solc.sh
|
|
|
|
CMD ["/bin/bash"]
|