Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse filesremoved offending command 'source', must be a sh quirk
- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
FROM python:3.10
|
2 |
RUN python -m venv venv
|
3 |
-
RUN
|
4 |
RUN pip install -r requirements.txt
|
5 |
ENTRYPOINT streamlit app.py
|
|
|
1 |
FROM python:3.10
|
2 |
RUN python -m venv venv
|
3 |
+
RUN venv/bin/activate
|
4 |
RUN pip install -r requirements.txt
|
5 |
ENTRYPOINT streamlit app.py
|