jspaint/Dockerfile

19 lines
352 B
Docker
Raw Permalink Normal View History

2024-02-02 20:48:39 +00:00
# runtime image (static server)
FROM nginxinc/nginx-unprivileged:latest as runtime
WORKDIR /usr/share/nginx/html/
COPY audio audio
COPY help help
COPY images images
COPY lib lib
COPY localization localization
COPY src src
COPY styles styles
COPY about.html .
COPY browserconfig.xml .
COPY favicon.ico .
COPY index.html .
COPY manifest.webmanifest .