SyntaxShift / dockerfile.txt
translators-will's picture
Upload dockerfile.txt
c6f2286 verified
raw
history blame contribute delete
195 Bytes
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/*