Skip to content

Commit f89a4ca

Browse files
committed
feat: sveltekit served by nestjs
1 parent d52a0b3 commit f89a4ca

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

Dockerfile

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,14 +81,15 @@ RUN \
8181
npm run build && \
8282
echo "**** build web ****" && \
8383
mkdir -p \
84-
/app/immich/server/www && \
84+
/app/immich/server/dist/web && \
8585
cd /tmp/immich/web && \
8686
npm ci && \
8787
npm run build && \
8888
cp -a \
89-
build/* \
89+
build \
90+
node_modules \
9091
static \
91-
/app/immich/server/www && \
92+
/app/immich/server/dist/web && \
9293
echo "**** build CLI ****" && \
9394
mkdir -p \
9495
/app/immich/cli && \

Dockerfile.aarch64

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ RUN \
6060
/tmp/node_modules/@img \
6161
/tmp/node_modules/exiftool-vendored.pl \
6262
node_modules && \
63-
npm link && \
6463
npm cache clean --force && \
6564
cp -a \
6665
resources \
@@ -80,14 +79,15 @@ RUN \
8079
npm run build && \
8180
echo "**** build web ****" && \
8281
mkdir -p \
83-
/app/immich/server/www && \
82+
/app/immich/server/dist/web && \
8483
cd /tmp/immich/web && \
8584
npm ci && \
8685
npm run build && \
8786
cp -a \
88-
build/* \
87+
build \
88+
node_modules \
8989
static \
90-
/app/immich/server/www && \
90+
/app/immich/server/dist/web && \
9191
echo "**** build CLI ****" && \
9292
mkdir -p \
9393
/app/immich/cli && \

0 commit comments

Comments
 (0)