mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 23:49:14 +00:00
10 lines
396 B
Django/Jinja
10 lines
396 B
Django/Jinja
# roles/web-app-littlejs/templates/Dockerfile.j2
|
||
FROM nginx:alpine
|
||
|
||
# Static LittleJS assets – engine builds + examples
|
||
COPY ./{{ LITTLEJS_APP_REL }}/examples /usr/share/nginx/html/examples
|
||
COPY ./{{ LITTLEJS_APP_REL }}/dist /usr/share/nginx/html/dist
|
||
|
||
# Custom Infinito.Nexus landing page with Bootstrap menu and tiles
|
||
COPY ./{{ LITTLEJS_INDEX_HOST_REL }} /usr/share/nginx/html/index.html
|