2026-05-17 03:37:26 -04:00
|
|
|
FROM python:3.12-slim
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
COPY requirements.txt .
|
|
|
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
2026-05-20 04:06:50 -04:00
|
|
|
ARG CACHE_BUST
|
2026-05-17 03:37:26 -04:00
|
|
|
COPY app/*.py .
|
|
|
|
|
EXPOSE 25327
|
|
|
|
|
CMD ["python", "main.py"]
|