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.

7 lines
229B

  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