moriire commited on
Commit
7a72e74
1 Parent(s): 8427633

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +9 -0
Dockerfile CHANGED
@@ -1,5 +1,14 @@
1
  FROM python:3.12-slim-bullseye
2
 
 
 
 
 
 
 
 
 
 
3
  WORKDIR /code
4
 
5
  RUN chmod 777 .
 
1
  FROM python:3.12-slim-bullseye
2
 
3
+ RUN apt-get update && apt-get upgrade -y && apt-get install -y --no-install-recommends \
4
+ python3 \
5
+ python3-pip \
6
+ ninja-build \
7
+ build-essential \
8
+ pkg-config \
9
+ gnupg2 \
10
+ wget
11
+
12
  WORKDIR /code
13
 
14
  RUN chmod 777 .