personal-site/Dockerfile

9 lines
160 B
Text
Raw Normal View History

2025-01-25 19:40:37 -08:00
FROM node:latest
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
EXPOSE 80
ENV NITRO_PORT 80
CMD ["node .output/server/index.mjs"]