awacke1 commited on
Commit
6b65222
·
verified ·
1 Parent(s): 17ad925

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -1,13 +1,13 @@
1
- FROM python:3.9-slim
2
 
3
  WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y \
6
- build-essential \
7
- curl \
8
- software-properties-common \
9
- git \
10
- && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/
 
1
+ FROM python:3.11-slim
2
 
3
  WORKDIR /app
4
 
5
  RUN apt-get update && apt-get install -y \
6
+     build-essential \
7
+     curl \
8
+     software-properties-common \
9
+     git \
10
+     && rm -rf /var/lib/apt/lists/*
11
 
12
  COPY requirements.txt ./
13
  COPY src/ ./src/