Files
dokku/docs/_build/Dockerfile

13 lines
263 B
Docker
Raw Permalink Normal View History

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