mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-02 15:39:57 +00:00
12 lines
484 B
Django/Jinja
12 lines
484 B
Django/Jinja
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
|
||
|
||
# Custom runner for non-full LittleJS shorts examples
|
||
COPY ./{{ LITTLEJS_RUN_HOST_REL }} /usr/share/nginx/html/examples/shorts/run.html
|