Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse filesAdded dockerfile for docker space
- Dockerfile +5 -0
Dockerfile
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM python:3.10
|
| 2 |
+
RUN python -m venv venv
|
| 3 |
+
RUN source venv/bin/activate
|
| 4 |
+
RUN pip install -r requirements.txt
|
| 5 |
+
ENTRYPOINT streamlit app.py
|