github.com/fafucoder/cilium@v1.6.11/Documentation/Dockerfile (about) 1 FROM docker.io/library/python:3.6.7-alpine3.8 2 3 LABEL maintainer="maintainer@cilium.io" 4 5 ENV DOCS_DIR=/srv/Documentation 6 ENV API_DIR=/srv/api 7 8 ADD ./requirements.txt $DOCS_DIR/requirements.txt 9 10 ENV PACKAGES="\ 11 bash \ 12 nodejs \ 13 npm \ 14 ca-certificates \ 15 make \ 16 git \ 17 python \ 18 py-pip \ 19 sphinx-python \ 20 enchant \ 21 aspell-en \ 22 " 23 RUN apk add --no-cache --virtual --update $PACKAGES && \ 24 pip install --upgrade pip && \ 25 pip install -r $DOCS_DIR/requirements.txt 26 27 WORKDIR $DOCS_DIR 28 ADD _api $API_DIR 29 ADD . $DOCS_DIR