mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
13 lines
174 B
Docker
13 lines
174 B
Docker
FROM python:3.7-stretch
|
|
|
|
RUN apt-get -y install libc-dev
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
COPY . .
|
|
|
|
WORKDIR python
|
|
|
|
RUN python -m pip install -e ".[dev, parallel]"
|
|
|
|
WORKDIR /
|