shiveshnavin commited on
Commit
cd63961
·
1 Parent(s): e78c388

Update dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -6
Dockerfile CHANGED
@@ -1,13 +1,8 @@
1
- # Use the base image with Python 3.8.3 on Ubuntu 20.04
2
- FROM brunneis/python:3.8.3-ubuntu-20.04
3
-
4
 
5
  WORKDIR /app
6
 
7
-
8
  COPY . .
9
- COPY . .
10
-
11
 
12
  RUN apt-get update && \
13
  xargs -a packages.txt apt-get install -y && \
 
1
+ FROM python/3.11.5-bookworm
 
 
2
 
3
  WORKDIR /app
4
 
 
5
  COPY . .
 
 
6
 
7
  RUN apt-get update && \
8
  xargs -a packages.txt apt-get install -y && \