neop3 commited on
Commit
fbb5abb
·
verified ·
1 Parent(s): f48adb3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -13
Dockerfile CHANGED
@@ -1,20 +1,8 @@
1
  FROM python:3.10-slim
2
 
3
- ENV PYTHONUNBUFFERED=1
4
- ENV PYTHONDONTWRITEBYTECODE=1
5
-
6
  WORKDIR /app
7
 
8
- RUN apt-get update && apt-get install -y --no-install-recommends \
9
- build-essential \
10
- curl \
11
- && rm -rf /var/lib/apt/lists/*
12
-
13
- COPY requirements.txt .
14
- RUN pip install --no-cache-dir --upgrade pip && \
15
- pip install --no-cache-dir -r requirements.txt
16
-
17
- COPY . .
18
 
19
  EXPOSE 7860
20
 
 
1
  FROM python:3.10-slim
2
 
 
 
 
3
  WORKDIR /app
4
 
5
+ COPY app.py .
 
 
 
 
 
 
 
 
 
6
 
7
  EXPOSE 7860
8