mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 05:05:46 +02:00
Bumps python from 3.14.3-alpine to 3.15.0b1-alpine. --- updated-dependencies: - dependency-name: python dependency-version: 3.15.0b1-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
265 B
Docker
13 lines
265 B
Docker
FROM python:3.15.0b1-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" ]
|