chitsanfei commited on
Commit
42646d7
·
verified ·
1 Parent(s): 18e686f

Rename Dockerfile to pre-requirements.txt

Browse files
Files changed (2) hide show
  1. Dockerfile +0 -18
  2. pre-requirements.txt +1 -0
Dockerfile DELETED
@@ -1,18 +0,0 @@
1
- FROM python:3.10-slim
2
-
3
- ENV PYTHONDONTWRITEBYTECODE=1
4
- ENV PYTHONUNBUFFERED=1
5
-
6
- WORKDIR /app
7
-
8
- RUN pip install --upgrade pip==23.0.1
9
-
10
- COPY requirements.txt .
11
-
12
- RUN pip install --no-cache-dir -r requirements.txt
13
-
14
- COPY . .
15
-
16
- EXPOSE 7860
17
-
18
- CMD ["python", "app.py"]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
pre-requirements.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ pip==23.0.1