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
338B

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