Spaces:
Sleeping
Sleeping
fix dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -17,7 +17,7 @@ WORKDIR $HOME/app
|
|
| 17 |
RUN pip install --no-cache-dir --upgrade pip
|
| 18 |
|
| 19 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 20 |
-
COPY --chown=user
|
| 21 |
|
| 22 |
# Install dependencies
|
| 23 |
RUN pip install "gradio[oauth]"
|
|
|
|
| 17 |
RUN pip install --no-cache-dir --upgrade pip
|
| 18 |
|
| 19 |
# Copy the current directory contents into the container at $HOME/app setting the owner to the user
|
| 20 |
+
COPY --chown=user run_job.py start_app.py requirements.txt README.md $HOME/app/
|
| 21 |
|
| 22 |
# Install dependencies
|
| 23 |
RUN pip install "gradio[oauth]"
|