mirror of
https://github.com/fallenbagel/jellyseerr.git
synced 2025-12-24 02:39:18 -05:00
build(fix): add missing pnpm command to dockerfile (#835)
Running the container, this error shows up `[FATAL tini (7)] exec pnpm failed: No such file or directory`
This commit is contained in:
@@ -14,7 +14,7 @@ RUN \
|
||||
;; \
|
||||
esac
|
||||
|
||||
Run npm install --global pnpm
|
||||
RUN npm install --global pnpm
|
||||
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
RUN CYPRESS_INSTALL_BINARY=0 pnpm install --frozen-lockfile
|
||||
@@ -45,6 +45,8 @@ WORKDIR /app
|
||||
|
||||
RUN apk add --no-cache tzdata tini && rm -rf /tmp/*
|
||||
|
||||
RUN npm install -g pnpm
|
||||
|
||||
# copy from build image
|
||||
COPY --from=BUILD_IMAGE /app ./
|
||||
|
||||
|
||||
Reference in New Issue
Block a user