From: Trenton Holmes Date: Tue, 19 Jul 2022 21:18:47 +0000 (-0700) Subject: Removes a Dockerfile I can't find referenced anywhere X-Git-Tag: v1.8.0~1^2~9^2 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F1259%2Fhead;p=thirdparty%2Fpaperless-ngx.git Removes a Dockerfile I can't find referenced anywhere --- diff --git a/docs/Dockerfile b/docs/Dockerfile deleted file mode 100644 index bb4b35e2de..0000000000 --- a/docs/Dockerfile +++ /dev/null @@ -1,17 +0,0 @@ -FROM python:3.5.1 - -# Install Sphinx and Pygments -RUN pip install --no-cache-dir Sphinx Pygments \ - # Setup directories, copy data - && 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"]