41 lines
999 B
Docker
41 lines
999 B
Docker
# Stage 1: Build React SPA
|
|
FROM node:20 AS react-build
|
|
WORKDIR /app
|
|
COPY web/package.json web/package-lock.json ./
|
|
RUN npm install
|
|
COPY web/ ./
|
|
RUN npx vite build
|
|
|
|
# Stage 2: Set up Nginx with React and Flask
|
|
FROM python:3.12-slim
|
|
WORKDIR /app
|
|
|
|
# Install Flask and dependencies
|
|
RUN pip install poetry
|
|
COPY api/poetry.lock .
|
|
COPY api/pyproject.toml .
|
|
RUN poetry config virtualenvs.create false --local
|
|
RUN poetry install
|
|
|
|
# Copy Flask app
|
|
COPY api/ ./
|
|
|
|
# Install Nginx
|
|
RUN apt-get update && apt-get install -y nginx && rm -rf /var/lib/apt/lists/*
|
|
RUN unlink /etc/nginx/sites-enabled/default # Ensure default Nginx configuration is not used
|
|
|
|
# Copy React build files into Nginx's static directory
|
|
COPY --from=react-build /app/dist /usr/share/nginx/html
|
|
|
|
# Copy custom Nginx configuration file
|
|
COPY docker/nginx.conf /etc/nginx/conf.d/default.conf
|
|
|
|
# Expose ports for Nginx
|
|
EXPOSE 80
|
|
|
|
# Start both Flask and Nginx using a script
|
|
COPY docker/start.sh /start.sh
|
|
RUN chmod +x /start.sh
|
|
|
|
CMD ["/start.sh"]
|