Forgets commited on
Commit
57a8333
·
verified ·
1 Parent(s): ed96fd6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +11 -2
Dockerfile CHANGED
@@ -1,12 +1,21 @@
1
  FROM python:3.9-slim
2
 
 
3
  RUN apt-get update && apt-get install -y \
4
- libgl1-mesa-glx \
5
  libglib2.0-0 \
 
 
 
6
  && rm -rf /var/lib/apt/lists/*
7
 
8
  WORKDIR /app
 
 
9
  COPY . .
 
 
10
  RUN pip install --no-cache-dir -r requirements.txt
11
 
12
- CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
 
1
  FROM python:3.9-slim
2
 
3
+ # Install dependency OpenCV nu anyar keur Debian/Ubuntu
4
  RUN apt-get update && apt-get install -y \
5
+ libgl1 \
6
  libglib2.0-0 \
7
+ libsm6 \
8
+ libxext6 \
9
+ libxrender-dev \
10
  && rm -rf /var/lib/apt/lists/*
11
 
12
  WORKDIR /app
13
+
14
+ # Copy kabeh file ka jero container
15
  COPY . .
16
+
17
+ # Install library python
18
  RUN pip install --no-cache-dir -r requirements.txt
19
 
20
+ # Jalankeun API
21
+ CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]