Files
ticket/Dockerfile
2026-07-16 12:27:06 +02:00

11 lines
202 B
Docker

FROM python:3.11.3-slim
WORKDIR /app
COPY dependencies.txt .
RUN pip install --no-cache-dir -r dependencies.txt
COPY . .
CMD ["sh", "-c", "python ./api/bootstrap_db.py && python ./telepot/tele.py"]