]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Removes a Dockerfile I can't find referenced anywhere 1259/head
authorTrenton Holmes <holmes.trenton@gmail.com>
Tue, 19 Jul 2022 21:18:47 +0000 (14:18 -0700)
committerTrenton Holmes <holmes.trenton@gmail.com>
Tue, 19 Jul 2022 21:18:47 +0000 (14:18 -0700)
docs/Dockerfile [deleted file]

diff --git a/docs/Dockerfile b/docs/Dockerfile
deleted file mode 100644 (file)
index bb4b35e..0000000
+++ /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"]