mirror of
https://github.com/immich-app/immich.git
synced 2025-01-01 08:31:59 +00:00
fix(server): Revert alpine version to fix Sharp dependencies not installed correctly (#2172)
This commit is contained in:
parent
d5f2e3e45c
commit
4853240de9
2 changed files with 3 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
FROM node:16-alpine3.17 as builder
|
FROM node:16-alpine3.14 as builder
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ RUN npm run build
|
||||||
RUN npm prune --omit=dev --omit=optional
|
RUN npm prune --omit=dev --omit=optional
|
||||||
|
|
||||||
|
|
||||||
FROM node:16-alpine3.17
|
FROM node:16-alpine3.14
|
||||||
|
|
||||||
ENV NODE_ENV=production
|
ENV NODE_ENV=production
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Our Node base image
|
# Our Node base image
|
||||||
FROM node:16-alpine3.17 as base
|
FROM node:16-alpine3.14 as base
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
WORKDIR /usr/src/app
|
||||||
EXPOSE 3000
|
EXPOSE 3000
|
||||||
|
|
Loading…
Reference in a new issue