]> git.ipfire.org Git - thirdparty/paperless-ngx.git/commitdiff
Removes references to now not set or used build args 1118/head
authorTrenton Holmes <holmes.trenton@gmail.com>
Wed, 8 Jun 2022 19:30:18 +0000 (12:30 -0700)
committerTrenton Holmes <holmes.trenton@gmail.com>
Wed, 8 Jun 2022 20:33:17 +0000 (13:33 -0700)
docker-builders/Dockerfile.pikepdf
docker-builders/Dockerfile.psycopg2

index 3e16d80678ab1fbac521a70cf80c536cc3438c53..ff7086b7c24591912e871091e7f8ea3ba9120b35 100644 (file)
@@ -2,8 +2,7 @@
 # Inputs:
 #    - REPO - Docker repository to pull qpdf from
 #    - QPDF_VERSION - The image qpdf version to copy .deb files from
-#    - PIKEPDF_GIT_TAG - The Git tag to clone and build from
-#    - PIKEPDF_VERSION - Used to force the built pikepdf version to match
+#    - PIKEPDF_VERSION - Version of pikepdf to build wheel for
 
 # Default to pulling from the main repo registry when manually building
 ARG REPO="paperless-ngx/paperless-ngx"
@@ -77,7 +76,7 @@ RUN set -eux \
   && echo "Building pikepdf wheel ${PIKEPDF_VERSION}" \
   && mkdir wheels \
   && python3 -m pip wheel \
-    # Build the package at the requried version
+    # Build the package at the required version
     pikepdf==${PIKEPDF_VERSION} \
     # Output the *.whl into this directory
     --wheel-dir wheels \
index 7fc59fc22f5cba3ad71b9d1e67876b9fb041e575..5e6157a02cd0902ad70777bfac6e52482324a1b2 100644 (file)
@@ -1,7 +1,6 @@
 # This Dockerfile builds the psycopg2 wheel
 # Inputs:
-#    - PSYCOPG2_GIT_TAG - The Git tag to clone and build from
-#    - PSYCOPG2_VERSION - Unused, kept for future possible usage
+#    - PSYCOPG2_VERSION - Version to build
 
 FROM python:3.9-slim-bullseye as main
 
@@ -38,7 +37,7 @@ RUN set -eux \
   && cd /usr/src \
   && mkdir wheels \
   && python3 -m pip wheel \
-    # Build the package at the requried version
+    # Build the package at the required version
     psycopg2==${PSYCOPG2_VERSION} \
     # Output the *.whl into this directory
     --wheel-dir wheels \