mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
13 lines
263 B
Docker
13 lines
263 B
Docker
FROM python:3.11.4-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" ]
|