build: update nodejs ver and use nginx-stable
parent
114820694c
commit
f6c6c7f391
|
@ -1,15 +1,15 @@
|
|||
FROM node:18-alpine3.15 as npmpackages
|
||||
FROM node:18-alpine3.17 as npmpackages
|
||||
WORKDIR /app
|
||||
COPY package.json .
|
||||
RUN npm install
|
||||
|
||||
FROM node:18-alpine3.15 as builder
|
||||
FROM node:18-alpine3.17 as builder
|
||||
WORKDIR /app
|
||||
COPY --from=npmpackages /app /app
|
||||
COPY . .
|
||||
RUN npm run build
|
||||
|
||||
FROM nginx:1.17.10-alpine
|
||||
FROM nginx:stable-alpine
|
||||
RUN rm -r /usr/share/nginx/html/
|
||||
COPY --from=builder /app/_site/ /usr/share/nginx/html/
|
||||
|
||||
|
|
Loading…
Reference in New Issue