paper-dynasty-discord/Dockerfile
Cal Corum 9d279cd038
All checks were successful
Build Docker Image / build (pull_request) Successful in 2m52s
chore: pin all Python dependency versions (#82)
Pin all requirements.txt deps to exact versions sourced from production
container. Move pytest/pytest-asyncio to new requirements-dev.txt. Pin
Dockerfile base image from python:3.12-slim to python:3.12.13-slim.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-10 02:03:17 -05:00

10 lines
178 B
Docker

FROM python:3.12.13-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "-u", "./paperdynasty.py" ]