Browse Source

update to node 18.14.1 / alpine3.17

pull/549/head
Philip H 2 years ago
parent
commit
c1a4dff2e3
No known key found for this signature in database GPG Key ID: BFED814F16701B1
  1. 4
      Dockerfile

4
Dockerfile

@ -9,7 +9,7 @@
# #
# #
FROM docker.io/library/node:18-alpine@sha256:fda98168118e5a8f4269efca4101ee51dd5c75c0fe56d8eb6fad80455c2f5827 AS build_node_modules
FROM docker.io/library/node:18-alpine@sha256:045b1a1c90bdfd8fcaad0769922aa16c401e31867d8bf5833365b0874884bbae AS build_node_modules
# Copy Web UI
COPY src/ /app/
@ -18,7 +18,7 @@ RUN npm ci --production
# Copy build result to a new image.
# This saves a lot of disk space.
FROM docker.io/library/node:18-alpine@sha256:fda98168118e5a8f4269efca4101ee51dd5c75c0fe56d8eb6fad80455c2f5827
FROM docker.io/library/node:18-alpine@sha256:045b1a1c90bdfd8fcaad0769922aa16c401e31867d8bf5833365b0874884bbae
COPY --from=build_node_modules /app /app
# Move node_modules one directory up, so during development

Loading…
Cancel
Save