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/deemix/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

FROM ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 as builder
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 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 Down Expand Up @@ -34,7 +34,7 @@

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

COPY --chmod=0755 . /

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/drydock/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Base stage - install system dependencies
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 AS base
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS base

USER root

Expand Down Expand Up @@ -88,7 +88,7 @@
COPY --from=ui-build /app/src/ui/dist /app/ui

USER apps
COPY --chmod=0755 . /

Check warning on line 91 in apps/drydock/Dockerfile

View workflow job for this annotation

GitHub Actions / Build drydock / 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 91 in apps/drydock/Dockerfile

View workflow job for this annotation

GitHub Actions / Build drydock / 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/

ENV WORKDIR=/app \
DD_LOG_FORMAT=text \
Expand Down
2 changes: 1 addition & 1 deletion apps/grocy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 58 in apps/grocy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build grocy / 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 58 in apps/grocy/Dockerfile

View workflow job for this annotation

GitHub Actions / Build grocy / 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
Expand Down
2 changes: 1 addition & 1 deletion apps/it-tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


FROM ghcr.io/trueforge-org/node:22.22@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 AS builder
FROM ghcr.io/trueforge-org/node:22.22@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS builder
ARG VERSION
WORKDIR /tmp
ENV HOME=/tmp
Expand All @@ -17,8 +17,8 @@
COPY --from=builder --chown=568:568 /tmp/dist/ /usr/share/nginx/html

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

Check warning on line 20 in apps/it-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / Build it-tools / 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 20 in apps/it-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / Build it-tools / 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
COPY --chmod=0755 . /

Check warning on line 23 in apps/it-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / Build it-tools / 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 23 in apps/it-tools/Dockerfile

View workflow job for this annotation

GitHub Actions / Build it-tools / 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/
WORKDIR /usr/share/nginx/html
2 changes: 1 addition & 1 deletion apps/lychee/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Move to our an own container
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

FROM ghcr.io/trueforge-org/ubuntu:24.04

Expand Down Expand Up @@ -63,7 +63,7 @@

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 66 in apps/lychee/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lychee / 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 66 in apps/lychee/Dockerfile

View workflow job for this annotation

GitHub Actions / Build lychee / 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
Expand Down
2 changes: 1 addition & 1 deletion apps/mstream/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# add local files
USER apps
COPY --chmod=0755 . /

Check warning on line 41 in apps/mstream/Dockerfile

View workflow job for this annotation

GitHub Actions / Build mstream / 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 41 in apps/mstream/Dockerfile

View workflow job for this annotation

GitHub Actions / Build mstream / 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
Expand Down
2 changes: 1 addition & 1 deletion apps/netbootxyz/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 33 in apps/netbootxyz/Dockerfile

View workflow job for this annotation

GitHub Actions / Build netbootxyz / 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/netbootxyz/Dockerfile

View workflow job for this annotation

GitHub Actions / Build netbootxyz / 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/


# app runs on port 3000
Expand Down
2 changes: 1 addition & 1 deletion apps/overseerr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107
FROM ghcr.io/trueforge-org/node:22.22@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

ARG VERSION

Expand Down Expand Up @@ -28,7 +28,7 @@
/app/.next/cache/*

USER apps
COPY --chmod=0755 . /

Check warning on line 31 in apps/overseerr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build overseerr / 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 31 in apps/overseerr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build overseerr / 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 /app

EXPOSE 5055
Expand Down
2 changes: 1 addition & 1 deletion apps/pairdrop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 32 in apps/pairdrop/Dockerfile

View workflow job for this annotation

GitHub Actions / Build pairdrop / 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/pairdrop/Dockerfile

View workflow job for this annotation

GitHub Actions / Build pairdrop / 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
Expand Down
8 changes: 4 additions & 4 deletions apps/python-node/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@

ENV HOME=/tmp/nodehome

COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 /usr/local/bin/node /usr/local/bin/
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 /usr/local/lib/node_modules/ /usr/local/lib/node_modules/
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 /usr/local/bin/node /usr/local/bin/
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 /usr/local/lib/node_modules/ /usr/local/lib/node_modules/

COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 /YARN_VERSION.txt /YARN_VERSION.txt
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 /opt/ /opthold/
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 /YARN_VERSION.txt /YARN_VERSION.txt
COPY --from=ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 /opt/ /opthold/

RUN YARN_VERSION=$(cat /YARN_VERSION.txt) && \
ln -s /usr/local/lib/node_modules/npm/bin/npm-cli.js /usr/local/bin/npm && \
Expand All @@ -26,6 +26,6 @@
rm -rf /opthold/

USER apps
COPY --chmod=0755 . /

Check warning on line 29 in apps/python-node/Dockerfile

View workflow job for this annotation

GitHub Actions / Build python-node / 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 29 in apps/python-node/Dockerfile

View workflow job for this annotation

GitHub Actions / Build python-node / 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/

CMD [ "node" ]
2 changes: 1 addition & 1 deletion apps/raneto/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 50 in apps/raneto/Dockerfile

View workflow job for this annotation

GitHub Actions / Build raneto / 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 50 in apps/raneto/Dockerfile

View workflow job for this annotation

GitHub Actions / Build raneto / 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
Expand Down
2 changes: 1 addition & 1 deletion apps/seerr/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# ---------- BASE STAGE ----------
FROM ghcr.io/trueforge-org/node:22.22@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 AS base
FROM ghcr.io/trueforge-org/node:22.22@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS base

ARG VERSION

USER root

ENV NODE_OPTIONS=--max_old_space_size=2048 \

Check warning on line 8 in apps/seerr/Dockerfile

View workflow job for this annotation

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

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PNPM_HOME' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/

Check warning on line 8 in apps/seerr/Dockerfile

View workflow job for this annotation

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

Variables should be defined before their use

UndefinedVar: Usage of undefined variable '$PNPM_HOME' More info: https://docs.docker.com/go/dockerfile/rule/undefined-var/
PNPM_HOME="/pnpm" \
PATH="$PNPM_HOME:$PATH"

Expand Down Expand Up @@ -67,7 +67,7 @@
RUN chown -R apps:apps /app && chmod -R 755 /app

USER apps
COPY --chmod=0755 . /

Check warning on line 70 in apps/seerr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build seerr / 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 70 in apps/seerr/Dockerfile

View workflow job for this annotation

GitHub Actions / Build seerr / 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 5055

Expand Down
2 changes: 1 addition & 1 deletion apps/snapdrop/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

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

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 39 in apps/snapdrop/Dockerfile

View workflow job for this annotation

GitHub Actions / Build snapdrop / 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 39 in apps/snapdrop/Dockerfile

View workflow job for this annotation

GitHub Actions / Build snapdrop / 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
Expand Down
2 changes: 1 addition & 1 deletion apps/speedtest-tracker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

ARG VERSION
ARG TARGETARCH
Expand Down Expand Up @@ -68,7 +68,7 @@
/tmp/*

USER apps
COPY --chmod=0755 . /

Check warning on line 71 in apps/speedtest-tracker/Dockerfile

View workflow job for this annotation

GitHub Actions / Build speedtest-tracker / 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 71 in apps/speedtest-tracker/Dockerfile

View workflow job for this annotation

GitHub Actions / Build speedtest-tracker / 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/


VOLUME /config
Expand Down
2 changes: 1 addition & 1 deletion apps/synclounge/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

# set version label
ARG VERSION
Expand All @@ -23,7 +23,7 @@

# copy local files
USER apps
COPY --chmod=0755 . /

Check warning on line 26 in apps/synclounge/Dockerfile

View workflow job for this annotation

GitHub Actions / Build synclounge / 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 26 in apps/synclounge/Dockerfile

View workflow job for this annotation

GitHub Actions / Build synclounge / 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/


WORKDIR /config
Expand Down
4 changes: 2 additions & 2 deletions apps/wud/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107 AS dependencies
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS dependencies

USER root

Expand Down Expand Up @@ -26,7 +26,7 @@
chown -R apps:apps /app && chmod -R 755 /app && \
rm -rf /var/lib/apt/lists/* /tmp/*

FROM ghcr.io/trueforge-org/node:22.22.0@sha256:d02dc64dae5f37614c8f149fbddfe574f9f3d32e4538a274c98d36c7a2e98107
FROM ghcr.io/trueforge-org/node:22.22.0@sha256:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02

ARG VERSION

Expand All @@ -48,10 +48,10 @@
# Copy ui
COPY --from=dependencies /app/src/ui/dist/ /app/ui

COPY --chmod=0775 . /

Check warning on line 51 in apps/wud/Dockerfile

View workflow job for this annotation

GitHub Actions / Build wud / 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 51 in apps/wud/Dockerfile

View workflow job for this annotation

GitHub Actions / Build wud / 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 root
COPY --chmod=0755 . /

Check warning on line 54 in apps/wud/Dockerfile

View workflow job for this annotation

GitHub Actions / Build wud / 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 54 in apps/wud/Dockerfile

View workflow job for this annotation

GitHub Actions / Build wud / 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/

ENV WORKDIR=/app \
WUD_LOG_FORMAT=text \
Expand Down
Loading