mirror of
https://github.com/traefik/traefik.git
synced 2026-02-03 20:39:51 -05:00
Some checks failed
CodeQL / Analyze (push) Has been cancelled
Build and Publish Documentation / Doc Process (push) Has been cancelled
Build experimental image on branch / build-webui (push) Has been cancelled
Build experimental image on branch / Build experimental image on branch (push) Has been cancelled
12 lines
283 B
Docker
12 lines
283 B
Docker
FROM alpine:3.23
|
|
|
|
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
|