7 lines
223 B
Docker
7 lines
223 B
Docker
FROM python:3.13-slim
|
|
WORKDIR /app
|
|
COPY entrypoint.py /app/entrypoint.py
|
|
COPY requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir -r /app/requirements.txt
|
|
ENTRYPOINT ["python", "-u", "/app/entrypoint.py"]
|