Compare commits

..

No commits in common. "7e77a67aacf3711e3e910a8003ab042d7dbad66f" and "18094fae3cfc06a037ea8d3923457767205aba6a" have entirely different histories.

View file

@ -7,3 +7,8 @@ COPY package-lock.json ./
RUN npm ci --silent
COPY . ./
RUN npm run build
FROM nginx:latest
COPY --from=builder /app/build /usr/share/nginx/html
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]