Spaces:
Running
Running
Mimi
commited on
Commit
·
7fde49d
1
Parent(s):
7b5a1e8
oops
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -7,10 +7,9 @@ ENV HOME=/home/user \
|
|
7 |
PATH=/home/user/.local/bin:$PATH
|
8 |
# Set default to user's home directory
|
9 |
WORKDIR $HOME/app
|
|
|
10 |
# Install system dependencies and requirements
|
11 |
RUN pip install --no-cache-dir -r $HOME/app/requirements.txt
|
12 |
-
# Copy current files to space
|
13 |
-
COPY --chown=user . $HOME/app
|
14 |
|
15 |
EXPOSE 7860
|
16 |
CMD streamlit run app.py \
|
|
|
7 |
PATH=/home/user/.local/bin:$PATH
|
8 |
# Set default to user's home directory
|
9 |
WORKDIR $HOME/app
|
10 |
+
COPY --chown=user . $HOME/app
|
11 |
# Install system dependencies and requirements
|
12 |
RUN pip install --no-cache-dir -r $HOME/app/requirements.txt
|
|
|
|
|
13 |
|
14 |
EXPOSE 7860
|
15 |
CMD streamlit run app.py \
|