Dockerfile: use nodejs 18 for build

workaround to get nodejs 20 working on older arm architectures
This commit is contained in:
Philip H 2024-04-18 17:04:38 +02:00
parent 3032163814
commit c8224f34f9
1 changed files with 5 additions and 6 deletions

View File

@ -1,9 +1,11 @@
FROM docker.io/library/node:20-alpine AS build_node_modules
FROM docker.io/library/node:18-alpine AS build_node_modules
# Copy Web UI
COPY src/ /app/
WORKDIR /app
RUN npm ci --omit=dev &&\
# Enable this to run `npm run serve`
npm i -g nodemon &&\
mv node_modules /node_modules
# Copy build result to a new image.
@ -20,11 +22,8 @@ COPY --from=build_node_modules /app /app
# than what runs inside of docker.
COPY --from=build_node_modules /node_modules /node_modules
RUN \
# Enable this to run `npm run serve`
npm i -g nodemon &&\
# Delete unnecessary files
npm cache clean --force && rm -rf ~/.npm
# Delete unnecessary files
RUN npm cache clean --force && rm -rf ~/.npm
# Install Linux packages
RUN apk add --no-cache \