Spaces:
Sleeping
Sleeping
vukadinovic936
commited on
Commit
•
974d6bf
1
Parent(s):
11d112f
renamed workspace to app
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -18,12 +18,12 @@ RUN pip install --upgrade pip \
|
|
18 |
&& pip install --no-cache-dir -r requirements.txt \
|
19 |
&& pip install jupyter
|
20 |
|
21 |
-
WORKDIR /
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# Copy the rest of the files
|
25 |
COPY . .
|
26 |
|
27 |
-
RUN chmod -R 777 /
|
28 |
|
29 |
CMD ["streamlit", "run", "app.py", "--server.port", "7860"]
|
|
|
18 |
&& pip install --no-cache-dir -r requirements.txt \
|
19 |
&& pip install jupyter
|
20 |
|
21 |
+
WORKDIR /app
|
22 |
EXPOSE 7860
|
23 |
|
24 |
# Copy the rest of the files
|
25 |
COPY . .
|
26 |
|
27 |
+
RUN chmod -R 777 /app/
|
28 |
|
29 |
CMD ["streamlit", "run", "app.py", "--server.port", "7860"]
|