You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:23-alpine AS build |
|
|
|
WORKDIR /app |
|
|
|
COPY . ./ |
|
COPY package.json ./ |
|
COPY package-lock.json ./ |
|
RUN npm install |
|
RUN npm run build |
|
|
|
EXPOSE 80 |
|
FROM nginx:1.27.4 |
|
COPY --from=build /app/build /usr/share/nginx/html |