mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Converts tabs to spaces and update EditorConfig for the new files
This commit is contained in:
parent
d9d6b7b151
commit
bdcc6f861d
@ -33,5 +33,5 @@ indent_style = space
|
|||||||
[**/test_*.py]
|
[**/test_*.py]
|
||||||
max_line_length = off
|
max_line_length = off
|
||||||
|
|
||||||
[Dockerfile]
|
[Dockerfile*]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
@ -47,7 +47,7 @@ repos:
|
|||||||
- id: yesqa
|
- id: yesqa
|
||||||
exclude: "(migrations)"
|
exclude: "(migrations)"
|
||||||
- repo: https://github.com/asottile/add-trailing-comma
|
- repo: https://github.com/asottile/add-trailing-comma
|
||||||
rev: "v2.2.2"
|
rev: "v2.2.3"
|
||||||
hooks:
|
hooks:
|
||||||
- id: add-trailing-comma
|
- id: add-trailing-comma
|
||||||
exclude: "(migrations)"
|
exclude: "(migrations)"
|
||||||
@ -64,16 +64,16 @@ repos:
|
|||||||
- id: black
|
- id: black
|
||||||
# Dockerfile hooks
|
# Dockerfile hooks
|
||||||
- repo: https://github.com/AleksaC/hadolint-py
|
- repo: https://github.com/AleksaC/hadolint-py
|
||||||
rev: v1.19.0
|
rev: v2.10.0
|
||||||
hooks:
|
hooks:
|
||||||
- id: hadolint
|
- id: hadolint
|
||||||
args:
|
args:
|
||||||
- --ignore
|
|
||||||
- DL3006 # https://github.com/hadolint/hadolint/wiki/DL3006 (doesn't understand FROM with ARG)
|
|
||||||
- --ignore
|
- --ignore
|
||||||
- DL3008 # https://github.com/hadolint/hadolint/wiki/DL3008 (should probably do this at some point)
|
- DL3008 # https://github.com/hadolint/hadolint/wiki/DL3008 (should probably do this at some point)
|
||||||
- --ignore
|
- --ignore
|
||||||
- DL3013 # https://github.com/hadolint/hadolint/wiki/DL3013 (should probably do this too at some point)
|
- DL3013 # https://github.com/hadolint/hadolint/wiki/DL3013 (should probably do this too at some point)
|
||||||
|
- --ignore
|
||||||
|
- DL3003 # https://github.com/hadolint/hadolint/wiki/DL3003 (seems excessive to use WORKDIR so much)
|
||||||
# Shell script hooks
|
# Shell script hooks
|
||||||
- repo: https://github.com/lovesegfault/beautysh
|
- repo: https://github.com/lovesegfault/beautysh
|
||||||
rev: v6.2.1
|
rev: v6.2.1
|
||||||
|
@ -8,7 +8,7 @@ COPY ./src-ui /src/src-ui
|
|||||||
|
|
||||||
WORKDIR /src/src-ui
|
WORKDIR /src/src-ui
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& npm update npm -g \
|
&& npm update npm -g \
|
||||||
&& npm ci --no-optional
|
&& npm ci --no-optional
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& ./node_modules/.bin/ng build --configuration production
|
&& ./node_modules/.bin/ng build --configuration production
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# This Dockerfile compiles the jbig2enc library
|
# This Dockerfile compiles the jbig2enc library
|
||||||
# Inputs:
|
# Inputs:
|
||||||
# - JBIG2ENC_VERSION - the Git tag to checkout and build
|
# - JBIG2ENC_VERSION - the Git tag to checkout and build
|
||||||
|
|
||||||
FROM debian:bullseye-slim
|
FROM debian:bullseye-slim
|
||||||
|
|
||||||
@ -32,8 +32,8 @@ RUN apt-get update --quiet \
|
|||||||
ARG JBIG2ENC_VERSION
|
ARG JBIG2ENC_VERSION
|
||||||
|
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& git clone --quiet --branch $JBIG2ENC_VERSION https://github.com/agl/jbig2enc .
|
&& git clone --quiet --branch $JBIG2ENC_VERSION https://github.com/agl/jbig2enc .
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& ./autogen.sh
|
&& ./autogen.sh
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& ./configure && make
|
&& ./configure && make
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
# This Dockerfile builds the pikepdf wheel
|
# This Dockerfile builds the pikepdf wheel
|
||||||
# Inputs:
|
# Inputs:
|
||||||
# - REPO - Docker repository to pull qpdf from
|
# - REPO - Docker repository to pull qpdf from
|
||||||
# - QPDF_VERSION - The image qpdf version to copy .deb files from
|
# - QPDF_VERSION - The image qpdf version to copy .deb files from
|
||||||
# - PIKEPDF_GIT_TAG - The Git tag to clone and build 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 - Used to force the built pikepdf version to match
|
||||||
|
|
||||||
# Default to pulling from the main repo registry when manually building
|
# Default to pulling from the main repo registry when manually building
|
||||||
ARG REPO="paperless-ngx/paperless-ngx"
|
ARG REPO="paperless-ngx/paperless-ngx"
|
||||||
@ -53,7 +53,7 @@ ARG PIKEPDF_GIT_TAG
|
|||||||
ARG PIKEPDF_VERSION
|
ARG PIKEPDF_VERSION
|
||||||
|
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& echo "building pikepdf wheel" \
|
&& echo "building pikepdf wheel" \
|
||||||
# Note the v in the tag name here
|
# Note the v in the tag name here
|
||||||
&& git clone --quiet --depth 1 --branch "${PIKEPDF_GIT_TAG}" https://github.com/pikepdf/pikepdf.git \
|
&& git clone --quiet --depth 1 --branch "${PIKEPDF_GIT_TAG}" https://github.com/pikepdf/pikepdf.git \
|
||||||
&& cd pikepdf \
|
&& cd pikepdf \
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
# This Dockerfile builds the psycopg2 wheel
|
# This Dockerfile builds the psycopg2 wheel
|
||||||
# Inputs:
|
# Inputs:
|
||||||
# - PSYCOPG2_GIT_TAG - The Git tag to clone and build from
|
# - PSYCOPG2_GIT_TAG - The Git tag to clone and build from
|
||||||
# - PSYCOPG2_VERSION - Unused, kept for future possible usage
|
# - PSYCOPG2_VERSION - Unused, kept for future possible usage
|
||||||
|
|
||||||
FROM python:3.9-slim-bullseye
|
FROM python:3.9-slim-bullseye
|
||||||
|
|
||||||
@ -25,7 +25,7 @@ RUN set -eux \
|
|||||||
&& apt-get update --quiet \
|
&& apt-get update --quiet \
|
||||||
&& apt-get install --yes --quiet --no-install-recommends $BUILD_PACKAGES \
|
&& apt-get install --yes --quiet --no-install-recommends $BUILD_PACKAGES \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& python3 -m pip install --upgrade pip wheel
|
&& python3 -m pip install --no-cache-dir --upgrade pip wheel
|
||||||
|
|
||||||
# Layers after this point change according to required version
|
# Layers after this point change according to required version
|
||||||
# For better caching, seperate the basic installs from
|
# For better caching, seperate the basic installs from
|
||||||
@ -35,7 +35,7 @@ ARG PSYCOPG2_GIT_TAG
|
|||||||
ARG PSYCOPG2_VERSION
|
ARG PSYCOPG2_VERSION
|
||||||
|
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& echo "Building psycopg2 wheel" \
|
&& echo "Building psycopg2 wheel" \
|
||||||
&& cd /usr/src \
|
&& cd /usr/src \
|
||||||
&& git clone --quiet --depth 1 --branch ${PSYCOPG2_GIT_TAG} https://github.com/psycopg/psycopg2.git \
|
&& git clone --quiet --depth 1 --branch ${PSYCOPG2_GIT_TAG} https://github.com/psycopg/psycopg2.git \
|
||||||
&& cd psycopg2 \
|
&& cd psycopg2 \
|
||||||
|
@ -36,16 +36,17 @@ ARG QPDF_VERSION
|
|||||||
# In order to get the required version of qpdf, it is backported from bookwork
|
# In order to get the required version of qpdf, it is backported from bookwork
|
||||||
# and then built from source
|
# and then built from source
|
||||||
RUN set -eux \
|
RUN set -eux \
|
||||||
&& echo "Building qpdf" \
|
&& echo "Building qpdf" \
|
||||||
&& echo "deb-src http://deb.debian.org/debian/ bookworm main" | tee /etc/apt/sources.list.d/bookworm-src.list \
|
&& echo "deb-src http://deb.debian.org/debian/ bookworm main" > /etc/apt/sources.list.d/bookworm-src.list \
|
||||||
&& apt-get update \
|
&& apt-get update \
|
||||||
&& mkdir qpdf \
|
&& mkdir qpdf \
|
||||||
&& cd qpdf \
|
&& cd qpdf \
|
||||||
&& apt-get source --yes --quiet qpdf=${QPDF_VERSION}-1/bookworm \
|
&& apt-get source --yes --quiet qpdf=${QPDF_VERSION}-1/bookworm \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& cd qpdf-$QPDF_VERSION \
|
&& cd qpdf-$QPDF_VERSION \
|
||||||
|
# We don't need to build the tests (also don't run them)
|
||||||
|
&& rm -rf libtests \
|
||||||
&& DEBEMAIL=hello@paperless-ngx.com debchange --bpo \
|
&& DEBEMAIL=hello@paperless-ngx.com debchange --bpo \
|
||||||
&& export DEB_BUILD_OPTIONS="terse nocheck nodoc parallel=2" \
|
&& export DEB_BUILD_OPTIONS="terse nocheck nodoc parallel=2" \
|
||||||
&& dpkg-buildpackage --build=binary --unsigned-source --unsigned-changes \
|
&& dpkg-buildpackage --build=binary --unsigned-source --unsigned-changes \
|
||||||
&& pwd \
|
|
||||||
&& ls -ahl ../*.deb
|
&& ls -ahl ../*.deb
|
||||||
|
@ -1,10 +1,10 @@
|
|||||||
FROM python:3.5.1
|
FROM python:3.5.1
|
||||||
|
|
||||||
# Install Sphinx and Pygments
|
# Install Sphinx and Pygments
|
||||||
RUN pip install Sphinx Pygments
|
RUN pip install --no-cache-dir Sphinx Pygments \
|
||||||
|
# Setup directories, copy data
|
||||||
|
&& mkdir /build
|
||||||
|
|
||||||
# Setup directories, copy data
|
|
||||||
RUN mkdir /build
|
|
||||||
COPY . /build
|
COPY . /build
|
||||||
WORKDIR /build/docs
|
WORKDIR /build/docs
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user