Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse filescopied WHLs into docker space
- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -3,5 +3,6 @@ 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
|
|
|
3 |
RUN python -m venv venv
|
4 |
RUN source venv/bin/activate
|
5 |
COPY ./requirements.txt requirements.txt
|
6 |
+
COPY ./deps/*.whl deps
|
7 |
RUN pip install -r requirements.txt
|
8 |
ENTRYPOINT streamlit app.py
|