FROM nginx:1.15.8-alpine # Update nginx config file to deligate to index.html RUN sed -i 's/index index.html index.htm;/try_files $uri \/index.html;/' /etc/nginx/conf.d/default.conf COPY /dist/lot-web-ui /usr/share/nginx/html #FROM node:18-alpine #WORKDIR /app #COPY dist/ots-landing-page-ssr . #EXPOSE 80 #CMD node server/server.mjs