frontend/Dockerfile

28 lines
455 B
Text
Raw Normal View History

2025-04-21 17:14:56 -07:00
# Build Stage
FROM node:18 AS build
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
# Serve Stage
FROM nginx:stable-alpine
# Copy built React files into nginx public folder
2025-04-21 18:14:39 -07:00
COPY --from=build /app/build /usr/share/nginx/html
2025-04-21 17:14:56 -07:00
# Remove default nginx config
RUN rm /etc/nginx/conf.d/default.conf
# Add your own nginx config
COPY nginx.conf /etc/nginx/conf.d
# Expose port 80
EXPOSE 80
CMD ["nginx", "-g", "daemon off;"]