Let the dockerfile do the build

This commit is contained in:
Alessio Davoli 2023-05-31 20:43:04 +02:00
parent 50fd574a8e
commit b4b1ebd36b

View file

@ -1,7 +1,16 @@
FROM nginx
FROM node:18 AS build
WORKDIR /usr
COPY package.json ./
COPY yarn.lock ./
RUN yarn install --frozen-lockfile
COPY . ./
RUN yarn build
FROM nginx:alpine
COPY --from=build /usr/dist /usr/share/nginx/html
#COPY nginx.conf /etc/nginx/nginx.conf
EXPOSE 80
RUN rm -rf /usr/share/nginx/html/*
COPY ./dist/ /usr/share/nginx/html/
CMD ["nginx","-g","daemon off;"]