personal-site/Dockerfile
Seven Of Aces 641f1856be
All checks were successful
Publish to OCI / publish (push) Successful in 2m56s
.
2025-01-25 19:40:37 -08:00

9 lines
No EOL
160 B
Docker

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"]