This repository has been archived on 2025-08-18. You can view files and clone it, but cannot push or open issues or pull requests.
Files
new-home/Dockerfile

20 lines
243 B
Docker

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