geekyrakshit commited on
Commit
e3abc09
·
1 Parent(s): aa4da3d

update: dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y \
13
  COPY requirements.txt ./
14
  COPY src/ ./src/
15
 
16
- RUN pip3 install -r uv
17
  RUN uv venv
18
  RUN uv pip install -r requirements.txt
19
 
 
1
+ FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
 
13
  COPY requirements.txt ./
14
  COPY src/ ./src/
15
 
16
+ RUN pip3 install uv
17
  RUN uv venv
18
  RUN uv pip install -r requirements.txt
19