mirror of
https://gitlab.com/megazordpobeda/DataRush.git
synced 2026-05-22 22:07:10 +00:00
15 lines
315 B
Docker
15 lines
315 B
Docker
FROM docker.io/python:3.13-slim
|
|
|
|
ENV PYTHONUNBUFFERED=1 \
|
|
PIP_NO_CACHE_DIR=1
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY checker_requirements.txt .
|
|
|
|
RUN pip install --no-cache-dir -r checker_requirements.txt
|
|
|
|
CMD ["python"]
|