Files
tg_autopost/docker/bot/Dockerfile
2025-08-08 10:39:10 +09:00

10 lines
162 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY docker/bot/requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt
COPY . /app