traefik/docs/docs.Dockerfile
Jenthe Noordsij 3e0dc4928e
Some checks are pending
CodeQL / Analyze (push) Waiting to run
Build and Publish Documentation / Doc Process (push) Waiting to run
Build experimental image on branch / build-webui (push) Waiting to run
Build experimental image on branch / Build experimental image on branch (push) Waiting to run
Update Dockerfiles to Alpine 3.24
2026-06-16 09:16:07 +02:00

12 lines
283 B
Docker

FROM alpine:3.24
ENV PATH="${PATH}:/venv/bin"
COPY requirements.txt /mkdocs/
WORKDIR /mkdocs
VOLUME /mkdocs
RUN apk --no-cache --no-progress add py3-pip gcc musl-dev python3-dev \
&& python3 -m venv /venv \
&& source /venv/bin/activate \
&& pip3 install -r requirements.txt