github.com/imran-kn/cilium-fork@v1.6.9/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      ca-certificates \
    13      make \
    14      git \
    15      python \
    16      py-pip \
    17      sphinx-python \
    18      enchant \
    19      aspell-en \
    20  "
    21  RUN apk add --no-cache --virtual --update $PACKAGES && \
    22      pip install --upgrade pip && \
    23      pip install -r $DOCS_DIR/requirements.txt
    24  
    25  WORKDIR $DOCS_DIR
    26  ADD _api $API_DIR
    27  ADD . $DOCS_DIR