Spaces:
Sleeping
Sleeping
Update Dockerfile
#2
by dkedar7 - opened
- Dockerfile +0 -1
Dockerfile
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
FROM python:3.13-slim
|
| 2 |
ADD . /app
|
| 3 |
WORKDIR /app
|
| 4 |
-
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
CMD gunicorn app:server --bind :${PORT:-7860}
|
|
|
|
| 1 |
FROM python:3.13-slim
|
| 2 |
ADD . /app
|
| 3 |
WORKDIR /app
|
|
|
|
| 4 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 5 |
CMD gunicorn app:server --bind :${PORT:-7860}
|