bahi-bh commited on
Commit
2cab16f
·
verified ·
1 Parent(s): 68d6da7

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +15 -12
Dockerfile CHANGED
@@ -1,15 +1,18 @@
1
  FROM python:3.11-slim
2
-
3
- RUN apt-get update && apt-get install -y curl git && rm -rf /var/lib/apt/lists/*
4
-
 
 
 
5
  WORKDIR /app
6
- COPY . .
7
-
8
- RUN pip install --no-cache-dir -U pip
9
- RUN pip install --no-cache-dir fastapi uvicorn httpx python-dotenv
10
-
11
- RUN if [ -f requirements.txt ]; then pip install --no-cache-dir -r requirements.txt; fi
12
-
13
  EXPOSE 7860
14
-
15
- CMD ["uvicorn","server:app","--host","0.0.0.0","--port","7860"]
 
1
  FROM python:3.11-slim
2
+
3
+ RUN useradd -m -u 1000 user
4
+ USER user
5
+ ENV PATH="/home/user/.local/bin:$PATH"
6
+ ENV PYTHONUNBUFFERED=1
7
+
8
  WORKDIR /app
9
+
10
+ COPY --chown=user requirements.txt .
11
+ RUN pip install --no-cache-dir --upgrade pip && \
12
+ pip install --no-cache-dir -r requirements.txt
13
+
14
+ COPY --chown=user . .
15
+
16
  EXPOSE 7860
17
+ CMD ["python", "server.py"]
18
+