Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +0 -5
Dockerfile
CHANGED
|
@@ -1,11 +1,6 @@
|
|
| 1 |
FROM python:3.9
|
| 2 |
-
|
| 3 |
WORKDIR /code
|
| 4 |
COPY . .
|
| 5 |
-
|
| 6 |
-
# Internet access runtime par milega, isliye yahan sirf install hoga
|
| 7 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 8 |
-
|
| 9 |
EXPOSE 7860
|
| 10 |
-
# Seedha python file run karo jo download aur server dono sambhal legi
|
| 11 |
CMD ["python", "main.py"]
|
|
|
|
| 1 |
FROM python:3.9
|
|
|
|
| 2 |
WORKDIR /code
|
| 3 |
COPY . .
|
|
|
|
|
|
|
| 4 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
| 5 |
EXPOSE 7860
|
|
|
|
| 6 |
CMD ["python", "main.py"]
|