Files
dokku/tests/apps/dockerfile-release/Dockerfile
dependabot[bot] eb6777be4a chore(deps): bump python in /tests/apps/dockerfile-release
Bumps python from 3.14.2-bookworm to 3.14.3-bookworm.

---
updated-dependencies:
- dependency-name: python
  dependency-version: 3.14.3-bookworm
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-09 15:34:11 +00:00

20 lines
309 B
Docker

FROM python:3.14.3-bookworm
RUN pip install --user pipenv
ENV PATH="${PATH}:/root/.local/bin"
ENV PIPENV_VENV_IN_PROJECT=0
COPY . /app
WORKDIR /app
RUN ls -lah
RUN rm -rf .venv
RUN mkdir .venv
RUN pipenv install
CMD pipenv run gunicorn -b 0.0.0.0:8000 --workers=3 --threads=5 project.wsgi:application