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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN \
npm install --omit=dev && \
cd /build/client && \
npm install --omit=dev && \
DISABLE_ESLINT_PLUGIN=true npm run build && \
INDEX_FORMAT=ejs DISABLE_ESLINT_PLUGIN=true npm run build && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand All @@ -53,14 +53,14 @@ LABEL maintainer="thespad"
COPY --from=buildstage /build/server/ /app
COPY --from=buildstage /build/server/.env.sample /app/.env
COPY --from=buildstage /build/client/dist /app/public/
COPY --from=buildstage /build/client/dist/index.html /app/views

RUN \
apk add --no-cache \
nodejs \
npm \
postgresql16-client && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
mv /app/public/index.ejs /app/views/ && \
echo "**** create symlinks ****" && \
mkdir -p /app/data/private/attachments && \
/bin/bash -c \
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN \
npm install --omit=dev && \
cd /build/client && \
npm install --omit=dev && \
DISABLE_ESLINT_PLUGIN=true npm run build && \
INDEX_FORMAT=ejs DISABLE_ESLINT_PLUGIN=true npm run build && \
echo "**** cleanup ****" && \
apk del --purge \
build-dependencies && \
Expand All @@ -53,14 +53,14 @@ LABEL maintainer="thespad"
COPY --from=buildstage /build/server/ /app
COPY --from=buildstage /build/server/.env.sample /app/.env
COPY --from=buildstage /build/client/dist /app/public/
COPY --from=buildstage /build/client/dist/index.html /app/views

RUN \
apk add --no-cache \
nodejs \
npm \
postgresql16-client && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
mv /app/public/index.ejs /app/views/ && \
echo "**** create symlinks ****" && \
mkdir -p /app/data/private/attachments && \
/bin/bash -c \
Expand Down