File size: 195 Bytes
c6f2286
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
FROM python:3.10-slim

# Install system dependencies
RUN apt-get update && apt-get install -y \
    gcc \
    cargo \
    nodejs \
    build-essential \
    && rm -rf /var/lib/apt/lists/*