mirror of
https://github.com/dokku/dokku.git
synced 2025-12-23 23:39:30 +01:00
Bumps python from 3.12.2-alpine to 3.12.3-alpine. --- updated-dependencies: - dependency-name: python dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
263 B
Docker
13 lines
263 B
Docker
FROM python:3.12.3-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" ]
|