Spaces:
Sleeping
Sleeping
Delete Dockerfile
Browse files- Dockerfile +0 -15
Dockerfile
DELETED
@@ -1,15 +0,0 @@
|
|
1 |
-
FROM python:3.10
|
2 |
-
|
3 |
-
WORKDIR /app
|
4 |
-
|
5 |
-
# Copy both requirements and constraints
|
6 |
-
COPY requirements.txt constraints.txt /app/
|
7 |
-
|
8 |
-
# Install pinned dependencies using constraints
|
9 |
-
RUN pip install --no-cache-dir -r requirements.txt -c constraints.txt
|
10 |
-
|
11 |
-
# Copy all your code
|
12 |
-
COPY . /app
|
13 |
-
|
14 |
-
# Run Streamlit
|
15 |
-
CMD ["streamlit", "run", "app.py", "--server.port", "7860", "--server.address", "0.0.0.0"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|