Commit
Β·
7c3c32d
1
Parent(s):
aca9f90
update Dockerfile to use python:3.12-slim and add necessary dependencies
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
-
FROM python:3.12
|
2 |
|
3 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
4 |
wget \
|
5 |
ca-certificates \
|
|
|
|
|
|
|
6 |
&& rm -rf /var/lib/apt/lists/*
|
7 |
|
8 |
# Set the working directory in the container
|
|
|
1 |
+
FROM python:3.12-slim
|
2 |
|
3 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
4 |
wget \
|
5 |
ca-certificates \
|
6 |
+
libgl1-mesa-glx \
|
7 |
+
libegl1-mesa \
|
8 |
+
libfontconfig1 \
|
9 |
&& rm -rf /var/lib/apt/lists/*
|
10 |
|
11 |
# Set the working directory in the container
|