ShadowGard3n commited on
Commit
7fda27c
·
1 Parent(s): 74a11a6

Dependency error

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile CHANGED
@@ -1,6 +1,11 @@
1
  # Use Python 3.12
2
  FROM python:3.12
3
 
 
 
 
 
 
4
  # Set the working directory (Created as root by default)
5
  WORKDIR /app
6
 
 
1
  # Use Python 3.12
2
  FROM python:3.12
3
 
4
+ RUN apt-get update && apt-get install -y \
5
+ libgl1-mesa-glx \
6
+ libglib2.0-0 \
7
+ && rm -rf /var/lib/apt/lists/*
8
+
9
  # Set the working directory (Created as root by default)
10
  WORKDIR /app
11