Let Dockerfile to the build #4

Merged
zbolo-wd merged 11 commits from move-docker-compose into main 2023-06-27 15:59:45 +02:00
Showing only changes of commit b4b1ebd36b - Show all commits

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;"]