Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion paperless-ngx/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
ENV TERM="xterm-256color"

# Paperless version
ARG PAPERLESS_VERSION="v2.20.6"
ARG PAPERLESS_VERSION="v2.20.8"

# Renovate packages

Expand Down Expand Up @@ -109,7 +109,7 @@
# Install basic runtime packages.
# These change very infrequently
# hadolint ignore=DL3003,DL3042,DL3008,SC2086
RUN --mount=type=cache,target=/root/.cache/uv/,id=uv-cache \

Check failure on line 112 in paperless-ngx/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Hadolint

DL3009 info: Delete the apt-get lists after installing something

Check failure on line 112 in paperless-ngx/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Hadolint

DL3009 info: Delete the apt-get lists after installing something
set -eux \
echo "Installing system packages" \
&& apt-get update \
Expand Down Expand Up @@ -145,7 +145,7 @@

# Install requirements
# hadolint ignore=DL3042,DL3008,DL3013,SC2086
RUN --mount=type=cache,target=/root/.cache/uv/,id=uv-cache \

Check failure on line 148 in paperless-ngx/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Hadolint

SC2035 info: Use ./*glob* or -- *glob* so names with dashes won't become options.

Check failure on line 148 in paperless-ngx/Dockerfile

View workflow job for this annotation

GitHub Actions / workflows / Hadolint

SC2035 info: Use ./*glob* or -- *glob* so names with dashes won't become options.
set -eux \
&& echo "Installing build system packages" \
&& apt-get update \
Expand Down
Loading