mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-12-06 23:05:42 +01:00
19 lines
357 B
Text
19 lines
357 B
Text
|
|
FROM python:3.5.1
|
||
|
|
MAINTAINER Pit Kleyersburg <pitkley@googlemail.com>
|
||
|
|
|
||
|
|
# Install Sphinx and Pygments
|
||
|
|
RUN pip install Sphinx Pygments
|
||
|
|
|
||
|
|
# Setup directories, copy data
|
||
|
|
RUN mkdir /build
|
||
|
|
COPY . /build
|
||
|
|
WORKDIR /build/docs
|
||
|
|
|
||
|
|
# Build documentation
|
||
|
|
RUN make html
|
||
|
|
|
||
|
|
# Start webserver
|
||
|
|
WORKDIR /build/docs/_build/html
|
||
|
|
EXPOSE 8000/tcp
|
||
|
|
CMD ["python3", "-m", "http.server"]
|