ar08 commited on
Commit
32ea06e
·
verified ·
1 Parent(s): b47f80d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -1
Dockerfile CHANGED
@@ -1,6 +1,12 @@
1
  # Use an official Python runtime as a parent image
2
  FROM python:3.10-slim
3
-
 
 
 
 
 
 
4
  # Set the working directory in the container
5
  WORKDIR /app
6
 
 
1
  # Use an official Python runtime as a parent image
2
  FROM python:3.10-slim
3
+ # Install system dependencies for building Python packages
4
+ RUN apt-get update && \
5
+ apt-get install -y --no-install-recommends \
6
+ build-essential \
7
+ cmake \
8
+ git \
9
+ && rm -rf /var/lib/apt/lists/*
10
  # Set the working directory in the container
11
  WORKDIR /app
12