new-home/Dockerfile
José Henrique 40e9f51884
Some checks failed
Master Build / Build and Push Docker Image (amd64 and arm64) (push) Failing after 2m10s
Master Build / Deploy Local (Demo) (push) Has been skipped
Master Build / Deploy Live (push) Has been skipped
update Dockerfile to use Node.js 20-slim as the base image
2025-03-14 19:32:58 -03:00

21 lines
263 B
Docker

FROM node:20-slim AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
RUN ls -la /app
FROM nginx:alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
# Start Nginx server
CMD ["nginx", "-g", "daemon off;"]