web/Dockerfile

15 lines
211 B
Docker
Raw Permalink Normal View History

2023-01-12 23:25:48 +00:00
FROM nginx
WORKDIR /app
COPY header.html .
COPY footer.html .
2023-01-17 22:59:22 +00:00
COPY img/ img/
COPY css/ css/
2023-10-25 14:36:53 +00:00
COPY patches/ patches/
2023-01-17 22:59:22 +00:00
COPY lang/ lang/
COPY generate.sh .
2023-01-12 23:25:48 +00:00
2023-05-04 21:35:24 +00:00
RUN ./generate.sh
2023-01-12 23:25:48 +00:00
2023-01-13 18:56:02 +00:00
RUN cp -r www/* /usr/share/nginx/html/