All checks were successful
Build Docker Image / build (pull_request) Successful in 2m52s
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>
10 lines
178 B
Docker
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" ] |