Skip to content
Merged
Show file tree
Hide file tree
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 apps/adguardhome-sync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG VERSION
ARG TARGETARCH
Expand All @@ -20,7 +20,7 @@
rm /tmp/adguardhomesync.tar.gz

USER apps
COPY . /

Check warning on line 23 in apps/adguardhome-sync/Dockerfile

View workflow job for this annotation

GitHub Actions / Build adguardhome-sync / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 23 in apps/adguardhome-sync/Dockerfile

View workflow job for this annotation

GitHub Actions / Build adguardhome-sync / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
COPY ./root /

EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion apps/autoscan/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/golang:1.25.1@sha256:df7b28f4837c254247d733bbac9a864b6cb8cd282c8c7a8b7cd1f37bdb8f759b as builder

Check warning on line 3 in apps/autoscan/Dockerfile

View workflow job for this annotation

GitHub Actions / Build autoscan / Build (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in apps/autoscan/Dockerfile

View workflow job for this annotation

GitHub Actions / Build autoscan / Build (linux/arm64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -14,7 +14,7 @@
go build -o autoscan ./cmd/autoscan && \
chmod 755 "/autoscan/autoscan"

FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

EXPOSE 3030
ARG IMAGE_STATS
Expand All @@ -22,7 +22,7 @@

USER apps:apps

COPY . /

Check warning on line 25 in apps/autoscan/Dockerfile

View workflow job for this annotation

GitHub Actions / Build autoscan / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 25 in apps/autoscan/Dockerfile

View workflow job for this annotation

GitHub Actions / Build autoscan / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

COPY --from=builder /autoscan/autoscan /app/autoscan

Expand Down
2 changes: 1 addition & 1 deletion apps/caddy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/golang:1.25.1@sha256:df7b28f4837c254247d733bbac9a864b6cb8cd282c8c7a8b7cd1f37bdb8f759b as builder

Check warning on line 3 in apps/caddy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build caddy / Build (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 3 in apps/caddy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build caddy / Build (linux/arm64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -15,12 +15,12 @@
--with github.com/caddy-dns/cloudflare && \
chmod 755 "/caddy-bin"

FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

USER apps:apps

COPY --from=builder /caddy-bin "/app/caddy"
COPY . /

Check warning on line 23 in apps/caddy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build caddy / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 23 in apps/caddy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build caddy / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 8080 8443
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/cloudflareddns/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -19,6 +19,6 @@
# Fix shebang since container does not use s6-overlay
RUN sed -i 's|#!/command/with-contenv bash|#!/usr/bin/env bash|g' /app/cloudflare-ddns.sh

COPY . /

Check warning on line 22 in apps/cloudflareddns/Dockerfile

View workflow job for this annotation

GitHub Actions / Build cloudflareddns / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 22 in apps/cloudflareddns/Dockerfile

View workflow job for this annotation

GitHub Actions / Build cloudflareddns / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

WORKDIR /config
2 changes: 1 addition & 1 deletion apps/cni-plugins/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VERSION

Expand Down
2 changes: 1 addition & 1 deletion apps/code-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -35,8 +35,8 @@
/var/tmp/*

# add local files
COPY /root /

Check warning on line 38 in apps/code-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build code-server / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "/root" that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 38 in apps/code-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build code-server / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "/root" that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
COPY . /

Check warning on line 39 in apps/code-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build code-server / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 39 in apps/code-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build code-server / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 8443
2 changes: 1 addition & 1 deletion apps/deemix/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/node:22.20.0@sha256:ddd2e92871c2738c4b20cee69e8423049698d6da5f1a9ef910a6acd30e547fed as builder

Check warning on line 2 in apps/deemix/Dockerfile

View workflow job for this annotation

GitHub Actions / Build deemix / Build (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 2 in apps/deemix/Dockerfile

View workflow job for this annotation

GitHub Actions / Build deemix / Build (linux/arm64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -20,7 +20,7 @@

RUN yarn dist-server

FROM ghcr.io/trueforge-org/ubuntu:24.04@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.04@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -34,7 +34,7 @@

COPY --from=builder /app/deemix-gui/docker/ /app/

COPY . /

Check warning on line 37 in apps/deemix/Dockerfile

View workflow job for this annotation

GitHub Actions / Build deemix / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 37 in apps/deemix/Dockerfile

View workflow job for this annotation

GitHub Actions / Build deemix / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 6595

Expand Down
2 changes: 1 addition & 1 deletion apps/duplicacy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -22,7 +22,7 @@
chmod 755 "/app/duplicacy_web" \
&& chown -R apps:apps /app

COPY . /

Check warning on line 25 in apps/duplicacy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicacy / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 25 in apps/duplicacy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicacy / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
VOLUME ["/cache","/logs"]
Expand Down
2 changes: 1 addition & 1 deletion apps/duplicati/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand All @@ -8,7 +8,7 @@
ARG TARGETARCH=${TARGETARCH/amd64/x64}

# environment settings
ENV HOME="/config" \

Check warning on line 11 in apps/duplicati/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicati / Build (linux/amd64)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "DUPLICATI__REQUIRE_DB_ENCRYPTION_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 11 in apps/duplicati/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicati / Build (linux/arm64)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "DUPLICATI__REQUIRE_DB_ENCRYPTION_KEY") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
DUPLICATI__REQUIRE_DB_ENCRYPTION_KEY=true \
DUPLICATI__SERVER_DATAFOLDER=/config \
DUPLICATI__WEBSERVICE_PORT=8200 \
Expand All @@ -33,7 +33,7 @@
# copy local files
USER apps

COPY ./ /

Check warning on line 36 in apps/duplicati/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicati / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 36 in apps/duplicati/Dockerfile

View workflow job for this annotation

GitHub Actions / Build duplicati / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 8200
Expand Down
2 changes: 1 addition & 1 deletion apps/emby/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VERSION

Expand All @@ -21,7 +21,7 @@
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

COPY . /

Check warning on line 24 in apps/emby/Dockerfile

View workflow job for this annotation

GitHub Actions / Build emby / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 24 in apps/emby/Dockerfile

View workflow job for this annotation

GitHub Actions / Build emby / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/flood/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETARCH
ARG VENDOR
Expand All @@ -15,7 +15,7 @@
chmod 755 "/app/flood" && \
chown -R apps:apps /app

COPY . /

Check warning on line 18 in apps/flood/Dockerfile

View workflow job for this annotation

GitHub Actions / Build flood / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 18 in apps/flood/Dockerfile

View workflow job for this annotation

GitHub Actions / Build flood / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/foldingathome/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -47,7 +47,7 @@
# add local files
USER apps
COPY ./root/ /
COPY ./ /

Check warning on line 50 in apps/foldingathome/Dockerfile

View workflow job for this annotation

GitHub Actions / Build foldingathome / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 50 in apps/foldingathome/Dockerfile

View workflow job for this annotation

GitHub Actions / Build foldingathome / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 7396
Expand Down
4 changes: 2 additions & 2 deletions apps/golang/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8 as build
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2 as build

Check warning on line 4 in apps/golang/Dockerfile

View workflow job for this annotation

GitHub Actions / Build golang / Build (linux/amd64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

Check warning on line 4 in apps/golang/Dockerfile

View workflow job for this annotation

GitHub Actions / Build golang / Build (linux/arm64)

The 'as' keyword should match the case of the 'from' keyword

FromAsCasing: 'as' and 'FROM' keywords' casing do not match More info: https://docs.docker.com/go/dockerfile/rule/from-as-casing/

ENV PATH=/usr/local/go/bin:$PATH

Expand All @@ -28,7 +28,7 @@
apt-get purge -y --auto-remove gnupg; \
rm -rf /var/lib/apt/lists/*

FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

USER root

Expand Down
2 changes: 1 addition & 1 deletion apps/irqbalance/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG VERSION

USER root
Expand Down
2 changes: 1 addition & 1 deletion apps/jackett/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VERSION

Expand All @@ -20,6 +20,6 @@

USER apps:apps

COPY --chmod=0775 . /

Check warning on line 23 in apps/jackett/Dockerfile

View workflow job for this annotation

GitHub Actions / Build jackett / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 23 in apps/jackett/Dockerfile

View workflow job for this annotation

GitHub Actions / Build jackett / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

WORKDIR /config
2 changes: 1 addition & 1 deletion apps/java11/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Default to UTF-8 file.encoding
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' JAVA_HOME='/opt/java/openjdk'
Expand Down
2 changes: 1 addition & 1 deletion apps/java17/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Default to UTF-8 file.encoding
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' JAVA_HOME='/opt/java/openjdk'
Expand Down
2 changes: 1 addition & 1 deletion apps/java21/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Default to UTF-8 file.encoding
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' JAVA_HOME='/opt/java/openjdk'
Expand Down
2 changes: 1 addition & 1 deletion apps/java25/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Default to UTF-8 file.encoding
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' JAVA_HOME='/opt/java/openjdk'
Expand Down
2 changes: 1 addition & 1 deletion apps/java8/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Default to UTF-8 file.encoding
ENV LANG='en_US.UTF-8' LANGUAGE='en_US:en' LC_ALL='en_US.UTF-8' JAVA_HOME='/opt/java/openjdk'
Expand Down
2 changes: 1 addition & 1 deletion apps/jellyfin/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
USER root

ARG TARGETARCH
Expand Down Expand Up @@ -29,7 +29,7 @@

USER apps
COPY ./root/ /
COPY ./ /

Check warning on line 32 in apps/jellyfin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build jellyfin / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 32 in apps/jellyfin/Dockerfile

View workflow job for this annotation

GitHub Actions / Build jellyfin / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 8096 8920
VOLUME /config
2 changes: 1 addition & 1 deletion apps/kavita/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -34,7 +34,7 @@
/var/tmp/*

# add local files
COPY . /

Check warning on line 37 in apps/kavita/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kavita / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 37 in apps/kavita/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kavita / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 5000
2 changes: 1 addition & 1 deletion apps/kopia/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VERSION

# Normalize architecture names
ARG TARGETARCH=${TARGETARCH/amd64/x64}

ENV \

Check warning on line 10 in apps/kopia/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kopia / Build (linux/amd64)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KOPIA_PERSIST_CREDENTIALS_ON_CONNECT") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/

Check warning on line 10 in apps/kopia/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kopia / Build (linux/arm64)

Sensitive data should not be used in the ARG or ENV commands

SecretsUsedInArgOrEnv: Do not use ARG or ENV instructions for sensitive data (ENV "KOPIA_PERSIST_CREDENTIALS_ON_CONNECT") More info: https://docs.docker.com/go/dockerfile/rule/secrets-used-in-arg-or-env/
KOPIA_CHECK_FOR_UPDATES=false \
KOPIA_CONFIG_PATH=/config/repository.config \
KOPIA_CACHE_DIRECTORY=/config/cache \
Expand All @@ -24,7 +24,7 @@
| tar xzf - -C /usr/local/bin --strip-components 1 && \
rm -rf /var/lib/apt/lists/* /tmp/*

COPY . /

Check warning on line 27 in apps/kopia/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kopia / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 27 in apps/kopia/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kopia / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/kube-sa-proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
rm -rf /var/lib/apt/lists/*

# Copy Go project files
COPY . /

Check warning on line 17 in apps/kube-sa-proxy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kube-sa-proxy / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 17 in apps/kube-sa-proxy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build kube-sa-proxy / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# Create necessary directories
RUN mkdir -p /build /output && ls -la /build
Expand All @@ -30,7 +30,7 @@


# Stage 2 - Create the final image
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Set working directory
WORKDIR /app
Expand Down
2 changes: 1 addition & 1 deletion apps/kubectl/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG VERSION
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion apps/lidarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand Down Expand Up @@ -32,7 +32,7 @@
ln -s $(which ffprobe) /app/bin/ffprobe && \
chown -R apps:apps /app && chmod -R 755 /app

COPY . /

Check warning on line 35 in apps/lidarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lidarr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 35 in apps/lidarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lidarr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Expand Down
2 changes: 1 addition & 1 deletion apps/lvm-disk-watcher/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETPLATFORM
ARG VERSION
Expand All @@ -6,7 +6,7 @@
USER root

# Copy files with ownership
COPY --chown=568:568 . /

Check warning on line 9 in apps/lvm-disk-watcher/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lvm-disk-watcher / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 9 in apps/lvm-disk-watcher/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lvm-disk-watcher / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# Install LVM and dependencies, make script executable
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion apps/mariadb-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# hadolint ignore=DL3007
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/mergerfs/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -16,7 +16,7 @@
RUN tar xzf "/tmp/mergerfs-${VERSION}-static-linux_amd64.tar.gz" -C "/" && \
rm -rf "/tmp/mergerfs-${VERSION}-static-linux_amd64.tar.gz"

COPY . /

Check warning on line 19 in apps/mergerfs/Dockerfile

View workflow job for this annotation

GitHub Actions / Build mergerfs / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 19 in apps/mergerfs/Dockerfile

View workflow job for this annotation

GitHub Actions / Build mergerfs / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER root:root
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/minisatip/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -52,7 +52,7 @@

# add local files
USER apps
COPY ./ /

Check warning on line 55 in apps/minisatip/Dockerfile

View workflow job for this annotation

GitHub Actions / Build minisatip / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 55 in apps/minisatip/Dockerfile

View workflow job for this annotation

GitHub Actions / Build minisatip / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 8875 554 1900/udp
2 changes: 1 addition & 1 deletion apps/mongosh/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# hadolint ignore=DL3007
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/nextcloud-notify-push/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

USER root

Expand All @@ -22,4 +22,4 @@
USER apps:apps

# Copy files with correct permissions
COPY --chmod=775 . /

Check warning on line 25 in apps/nextcloud-notify-push/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nextcloud-notify-push / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 25 in apps/nextcloud-notify-push/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nextcloud-notify-push / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
2 changes: 1 addition & 1 deletion apps/nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ENV NGINX_ENTRYPOINT_WORKER_PROCESSES_AUTOTUNE=1

Expand All @@ -18,7 +18,7 @@
rm -rf /var/lib/apt/lists/*

# Copy configuration files into container
COPY --chmod=755 ./ /

Check warning on line 21 in apps/nginx/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nginx / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 21 in apps/nginx/Dockerfile

View workflow job for this annotation

GitHub Actions / Build nginx / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# Ensure NGINX directories are writable
RUN set -eux; \
Expand Down
2 changes: 1 addition & 1 deletion apps/node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@



FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG VERSION
ARG YARN_VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/ombi/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -30,6 +30,6 @@

# add local files
USER apps
COPY . /

Check warning on line 33 in apps/ombi/Dockerfile

View workflow job for this annotation

GitHub Actions / Build ombi / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 33 in apps/ombi/Dockerfile

View workflow job for this annotation

GitHub Actions / Build ombi / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
# ports and volumes
EXPOSE 3579
2 changes: 1 addition & 1 deletion apps/openvscode-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand Down Expand Up @@ -35,7 +35,7 @@
/var/tmp/*

# add local files
COPY /root /

Check warning on line 38 in apps/openvscode-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build openvscode-server / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "/root" that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 38 in apps/openvscode-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build openvscode-server / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "/root" that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
COPY . /

Check warning on line 39 in apps/openvscode-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build openvscode-server / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 39 in apps/openvscode-server/Dockerfile

View workflow job for this annotation

GitHub Actions / Build openvscode-server / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
# ports and volumes
EXPOSE 3000
2 changes: 1 addition & 1 deletion apps/plex/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand Down Expand Up @@ -32,7 +32,7 @@
&& apt-get clean \
&& rm -rf /etc/default/plexmediaserver /tmp/* /var/lib/apt/lists/* /var/tmp/

COPY . /

Check warning on line 35 in apps/plex/Dockerfile

View workflow job for this annotation

GitHub Actions / Build plex / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 35 in apps/plex/Dockerfile

View workflow job for this annotation

GitHub Actions / Build plex / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/postgresql-client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# hadolint ignore=DL3007
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETPLATFORM
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/postgresql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETARCH
ARG VENDOR
Expand Down Expand Up @@ -73,7 +73,7 @@

USER apps

COPY --chmod=0775 . /

Check warning on line 76 in apps/postgresql/Dockerfile

View workflow job for this annotation

GitHub Actions / Build postgresql / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 76 in apps/postgresql/Dockerfile

View workflow job for this annotation

GitHub Actions / Build postgresql / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

HEALTHCHECK CMD pg_isready -h 127.0.0.1 -p 5432 -U ${POSTGRES_USER} -d ${POSTGRES_DB}

Expand Down
2 changes: 1 addition & 1 deletion apps/prowlarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -24,7 +24,7 @@
chown -R root:root /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/* /app/bin/Prowlarr.Update

COPY . /

Check warning on line 27 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build prowlarr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 27 in apps/prowlarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build prowlarr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Expand Down
2 changes: 1 addition & 1 deletion apps/python/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# Environment variables
ARG VERSION
Expand Down
2 changes: 1 addition & 1 deletion apps/qui/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -18,7 +18,7 @@
chmod +x "/app/qui" && \
chown -R apps:apps "/app"

COPY . /

Check warning on line 21 in apps/qui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build qui / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 21 in apps/qui/Dockerfile

View workflow job for this annotation

GitHub Actions / Build qui / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 7576

Expand Down
2 changes: 1 addition & 1 deletion apps/radarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -24,7 +24,7 @@
chown -R root:root /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/* /app/bin/Radarr.Update

COPY . /

Check warning on line 27 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build radarr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 27 in apps/radarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build radarr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Expand Down
2 changes: 1 addition & 1 deletion apps/readarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -24,7 +24,7 @@
chown -R root:root /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/* /app/bin/Readarr.Update

COPY . /

Check warning on line 27 in apps/readarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build readarr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 27 in apps/readarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build readarr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Expand Down
2 changes: 1 addition & 1 deletion apps/requestrr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -19,7 +19,7 @@
chmod -R u=rwX,go=rX "/app" && \
chown -R apps:apps "/app"

COPY . /

Check warning on line 22 in apps/requestrr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build requestrr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 22 in apps/requestrr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build requestrr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

EXPOSE 4545

Expand Down
2 changes: 1 addition & 1 deletion apps/resilio-sync/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

# set version label
ARG VERSION
Expand All @@ -25,7 +25,7 @@
# add local files
USER apps
COPY ./root/ /
COPY ./ /

Check warning on line 28 in apps/resilio-sync/Dockerfile

View workflow job for this annotation

GitHub Actions / Build resilio-sync / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 28 in apps/resilio-sync/Dockerfile

View workflow job for this annotation

GitHub Actions / Build resilio-sync / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

# ports and volumes
EXPOSE 8888 55555
Expand Down
2 changes: 1 addition & 1 deletion apps/shellcheck/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG VERSION
ARG TARGETARCH
Expand All @@ -17,4 +17,4 @@

USER apps

COPY ./ /

Check warning on line 20 in apps/shellcheck/Dockerfile

View workflow job for this annotation

GitHub Actions / Build shellcheck / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 20 in apps/shellcheck/Dockerfile

View workflow job for this annotation

GitHub Actions / Build shellcheck / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/
2 changes: 1 addition & 1 deletion apps/smartctl-exporter/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG VERSION
ARG TARGETOS
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion apps/sonarr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VENDOR
ARG VERSION
Expand All @@ -24,7 +24,7 @@
chown -R root:root /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/* /app/bin/Sonarr.Update

COPY . /

Check warning on line 27 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build sonarr / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 27 in apps/sonarr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build sonarr / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Expand Down
2 changes: 1 addition & 1 deletion apps/stash/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2

ARG TARGETARCH
ARG VERSION
Expand Down Expand Up @@ -73,7 +73,7 @@
# -----------------------------
RUN apt-get purge -y gnupg && apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/*

COPY . /

Check warning on line 76 in apps/stash/Dockerfile

View workflow job for this annotation

GitHub Actions / Build stash / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 76 in apps/stash/Dockerfile

View workflow job for this annotation

GitHub Actions / Build stash / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
2 changes: 1 addition & 1 deletion apps/tqm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:431129004c8b82702e6a1c82ffc20d64c770179547c8d77deb7133c314a6d3b8
FROM ghcr.io/trueforge-org/ubuntu:24.4.0@sha256:3b826c0233182d7c31a9323121178b98976765b9ee03f9a96200ab0c70e2e1e2
ARG TARGETARCH
ARG VERSION

Expand All @@ -14,7 +14,7 @@
chown -R root:root /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/*

COPY . /

Check warning on line 17 in apps/tqm/Dockerfile

View workflow job for this annotation

GitHub Actions / Build tqm / Build (linux/amd64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

Check warning on line 17 in apps/tqm/Dockerfile

View workflow job for this annotation

GitHub Actions / Build tqm / Build (linux/arm64)

Attempting to Copy file that is excluded by .dockerignore

CopyIgnoredFile: Attempting to Copy file "." that is excluded by .dockerignore More info: https://docs.docker.com/go/dockerfile/rule/copy-ignored-file/

USER apps:apps
WORKDIR /config
Loading