clone of repo on github
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.
 
 
 
 

13 lines
214 B

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