mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
18 lines
252 B
Docker
18 lines
252 B
Docker
FROM python:3.7-stretch
|
|
|
|
RUN apt-get -y install libc-dev
|
|
|
|
RUN pip install pip==19.1.1
|
|
|
|
COPY python/requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install ipython==7.5.0
|
|
|
|
COPY . .
|
|
|
|
WORKDIR python
|
|
|
|
RUN python setup.py install
|
|
|
|
WORKDIR /
|
|
|