diff --git a/Dockerfile b/Dockerfile index a2071d3..2a2cbc1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,14 @@ FROM python:3.9-slim # Set the working directory in the container WORKDIR /usr/src/app +# Install build dependencies for Rust compilation +RUN apt-get update && apt-get install -y \ + gcc \ + g++ \ + make \ + curl \ + && rm -rf /var/lib/apt/lists/* + # Copy the current directory contents into the container COPY . .