Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse filesadded line to copy requirements
- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -2,5 +2,6 @@ FROM python:3.10
|
|
2 |
SHELL ["/bin/bash", "-c"]
|
3 |
RUN python -m venv venv
|
4 |
RUN source venv/bin/activate
|
|
|
5 |
RUN pip install -r requirements.txt
|
6 |
ENTRYPOINT streamlit app.py
|
|
|
2 |
SHELL ["/bin/bash", "-c"]
|
3 |
RUN python -m venv venv
|
4 |
RUN source venv/bin/activate
|
5 |
+
COPY ./requirements.txt requirements.txt
|
6 |
RUN pip install -r requirements.txt
|
7 |
ENTRYPOINT streamlit app.py
|