mirror of
https://github.com/saymrwulf/prophet.git
synced 2026-05-14 20:48:08 +00:00
fix Dockerfile (#2480)
This commit is contained in:
parent
71df6331e1
commit
7dfedae3f8
1 changed files with 2 additions and 2 deletions
|
|
@ -2,12 +2,12 @@ FROM python:3.7-stretch
|
|||
|
||||
RUN apt-get -y install libc-dev
|
||||
|
||||
RUN pip install pip==22.3.1
|
||||
RUN pip install --upgrade pip
|
||||
|
||||
COPY . .
|
||||
|
||||
WORKDIR python
|
||||
|
||||
RUN python -m pip install -e \".[dev, parallel]\"
|
||||
RUN python -m pip install -e ".[dev, parallel]"
|
||||
|
||||
WORKDIR /
|
||||
|
|
|
|||
Loading…
Reference in a new issue