11 lines
174 B
Docker
11 lines
174 B
Docker
FROM python:3
|
|
|
|
RUN mkdir -p /var/app
|
|
WORKDIR /var/app
|
|
COPY . /var/app
|
|
|
|
# install scipy & numpy
|
|
# install required packages
|
|
RUN pip install scipy numpy && \
|
|
pip install .
|