Files
dokku/docs/_build/Dockerfile
dependabot[bot] 88cfe2c3ca chore(deps): bump python in /docs/_build
Bumps python from 3.14.1-alpine to 3.14.2-alpine.

---
updated-dependencies:
- dependency-name: python
  dependency-version: 3.14.2-alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-16 13:05:17 +00:00

13 lines
263 B
Docker

FROM python:3.14.2-alpine
WORKDIR /usr/src/app
COPY docs/_build/requirements.txt .
RUN apk add --no-cache bash build-base yaml && \
pip install --no-cache-dir -r requirements.txt
COPY docs/_build/entrypoint /bin/entrypoint
ENTRYPOINT [ "/bin/entrypoint" ]