add dockerfile

main
radex 2024-02-02 21:48:39 +01:00
parent 4664a50c8a
commit e801b26c10
Signed by: radex
SSH Key Fingerprint: SHA256:hvqRXAGG1h89yqnS+cyFTLKQbzjWD4uXIqw7Y+0ws30
1 changed files with 18 additions and 0 deletions

18
Dockerfile Normal file
View File

@ -0,0 +1,18 @@
# 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 .