Files
jamesp 290ff0bc1e Initial commit
Co-authored-by: Copilot <copilot@github.com>
2026-05-11 15:55:14 -04:00

8 lines
181 B
Docker

FROM node:22-alpine
WORKDIR /app
EXPOSE 80
# Source is bind-mounted in docker-compose for live preview.
CMD ["sh", "-c", "npm install && npm run dev -- --host 0.0.0.0 --port 80"]