Files
aracvericek/Dockerfile
mstfyldz 35c7bac556 main
2026-02-22 23:23:57 +03:00

10 lines
150 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "import.py"]