vdkch/Dockerfile

9 lines
188 B
Docker
Raw Normal View History

2025-02-12 12:19:45 +03:00
# Dockerfile
FROM python:3.9-slim
ENV PYTHONUNBUFFERED 1
RUN apt-get update && apt-get install -y --no-install-recommends \
gcc \
python3-dev \
&& rm -rf /var/lib/apt/lists/*