Skip to content
Open
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/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:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS builder
FROM ghcr.io/trueforge-org/node:22.22@sha256:f3730b32628892a22dfa85e96750e83ab5f3e85c6170915e19110c134ab649e8 AS builder
ARG VERSION
WORKDIR /tmp
ENV HOME=/tmp
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:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02
FROM ghcr.io/trueforge-org/node:22.22@sha256:f3730b32628892a22dfa85e96750e83ab5f3e85c6170915e19110c134ab649e8

ARG VERSION

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:57a4a36bdf735ecfef262feb3354be695eadba8d4bd73138444dadfcce23da02 AS base
FROM ghcr.io/trueforge-org/node:22.22@sha256:f3730b32628892a22dfa85e96750e83ab5f3e85c6170915e19110c134ab649e8 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
Loading