Spaces:
Sleeping
Sleeping
fix Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -18,7 +18,7 @@ ENV HOME=/home/user \
|
|
18 |
PATH=/home/user/.local/bin:$PATH
|
19 |
WORKDIR $HOME/app
|
20 |
COPY --chown=user . $HOME/app
|
21 |
-
COPY ./
|
22 |
RUN pip install -r requirements.txt
|
23 |
COPY . .
|
24 |
|
|
|
18 |
PATH=/home/user/.local/bin:$PATH
|
19 |
WORKDIR $HOME/app
|
20 |
COPY --chown=user . $HOME/app
|
21 |
+
COPY ./requirements.txt ~/app/requirements.txt
|
22 |
RUN pip install -r requirements.txt
|
23 |
COPY . .
|
24 |
|