React 19 + TypeScript SPA with Vite, mobile responsive fixes, GitHub Actions CI/CD pipeline for automated deployment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
7 lines
144 B
Docker
7 lines
144 B
Docker
FROM node:22-alpine
|
|
WORKDIR /app
|
|
COPY package.json ./
|
|
RUN npm install --omit=dev
|
|
COPY index.mjs ./
|
|
EXPOSE 3001
|
|
CMD ["node", "index.mjs"]
|