MedhaCodes commited on
Commit
aac495e
·
verified ·
1 Parent(s): ba5e406

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -15
Dockerfile CHANGED
@@ -2,27 +2,13 @@ FROM python:3.10-slim
2
 
3
  WORKDIR /app
4
 
5
- # ================================
6
- # SYSTEM DEPENDENCIES (CRITICAL)
7
- # ================================
8
  RUN apt-get update && apt-get install -y \
9
- libgl1 \
10
- libglib2.0-0 \
11
- libsm6 \
12
- libxext6 \
13
- libxrender1 \
14
  && rm -rf /var/lib/apt/lists/*
15
 
16
- # ================================
17
- # PYTHON DEPENDENCIES
18
- # ================================
19
  COPY requirements.txt .
20
-
21
  RUN pip install --no-cache-dir -r requirements.txt
22
 
23
- # ================================
24
- # COPY PROJECT
25
- # ================================
26
  COPY . .
27
 
28
  EXPOSE 8000
 
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  RUN apt-get update && apt-get install -y \
6
+ libgl1 libglib2.0-0 \
 
 
 
 
7
  && rm -rf /var/lib/apt/lists/*
8
 
 
 
 
9
  COPY requirements.txt .
 
10
  RUN pip install --no-cache-dir -r requirements.txt
11
 
 
 
 
12
  COPY . .
13
 
14
  EXPOSE 8000