Adi362 commited on
Commit
7dc12ff
·
verified ·
1 Parent(s): 4545f0d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -1,7 +1,9 @@
1
- FROM python:3.11-slim-bookworm
2
 
3
  WORKDIR /app
4
 
 
 
5
  COPY requirements.txt .
6
 
7
  RUN pip install --no-cache-dir -r requirements.txt \
 
1
+ FROM python:3.11-alpine
2
 
3
  WORKDIR /app
4
 
5
+ RUN apk add --no-cache libstdc++
6
+
7
  COPY requirements.txt .
8
 
9
  RUN pip install --no-cache-dir -r requirements.txt \