Dockerfile 621 B

1234567891011121314
  1. FROM nginx:latest
  2. COPY ./dimesheet.html /usr/share/nginx/html/index2.html
  3. COPY ./index.html /usr/share/nginx/html/index.html
  4. COPY ./dimesheet_lucinity.html /usr/share/nginx/html/lucinity.html
  5. COPY ./dimesheet.html /etc/nginx/html/index.html
  6. COPY ./dimesheet_lucinity.html /etc/nginx/html/lucinity.html
  7. COPY ./dimesheet_marel.html /etc/nginx/html/marel.html
  8. # COPY ./sheets.html /etc/nginx/html/sheets.html
  9. #COPY nginx.conf /etc/nginx/sites-enabled/dime.asterisk.io.conf
  10. #CMD [ "ln","-s","/etc/nginx/sites-available/dime.asterisk.io.conf", "/etc/nginx/sites-enabled/" ]
  11. COPY nginx.conf /etc/nginx/nginx.conf
  12. EXPOSE 8000