Files
the-nexus/Dockerfile.preview
Timmy fbe5dd6834
Some checks failed
CI / test (pull_request) Failing after 57s
CI / validate (pull_request) Failing after 57s
Review Approval Gate / verify-review (pull_request) Failing after 7s
feat(#1339): Deploy Nexus to proper URL for preview
Port 3000 (avoids L402 on :8080, #1415).
./preview.sh, docker, GitHub Pages.
Triage: #1413 #1414 #1415

Fixes #1339
2026-04-14 07:37:45 -04:00

10 lines
434 B
Docker

FROM nginx:alpine
RUN rm /etc/nginx/conf.d/default.conf
COPY preview/nginx.conf /etc/nginx/conf.d/default.conf
COPY index.html app.js style.css boot.js gofai_worker.js /usr/share/nginx/html/
COPY service-worker.js manifest.json robots.txt help.html portals.json vision.json /usr/share/nginx/html/
COPY nexus/ /usr/share/nginx/html/nexus/
COPY icons/ /usr/share/nginx/html/icons/
COPY assets/ /usr/share/nginx/html/assets/
EXPOSE 3000