iSushant commited on
Commit
d94dea8
·
verified ·
1 Parent(s): 2d1bdc9

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -2,7 +2,12 @@ FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
 
 
 
 
5
  COPY requirements.txt .
 
6
  RUN pip install --no-cache-dir -r requirements.txt
7
 
8
  COPY app.py .
 
2
 
3
  WORKDIR /app
4
 
5
+ RUN apt-get update \
6
+ && apt-get install -y --no-install-recommends ca-certificates \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
  COPY requirements.txt .
10
+
11
  RUN pip install --no-cache-dir -r requirements.txt
12
 
13
  COPY app.py .