# Use Node.js image for building frontend | |
FROM node:20-slim AS frontend-builder | |
WORKDIR /app/frontend | |
COPY frontend/package*.json ./ | |
RUN npm install --legacy-peer-deps --production | |
COPY frontend/ ./ | |
RUN npm run build | |
# Use Python image with uv pre-installed and nginx | |
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim | |
WORKDIR /app | |
RUN mkdir -p /app/static/data | |
# # Add DNS configuration | |
# RUN echo "nameserver 8.8.8.8" > /etc/resolv.conf && \ | |
# echo "nameserver 8.8.4.4" >> /etc/resolv.conf | |
# Create a non-root user | |
RUN useradd -m -u 1000 user | |
RUN chown -R user:user /app | |
RUN mkdir -p /data && chown -R user:user /data | |
USER user | |
# Install backend dependencies | |
COPY backend/ backend/ | |
COPY pyproject.toml . | |
RUN uv sync && uv pip install . | |
ENV PATH="/app/.venv/bin:/root/.local/bin:/root/.uv/venv/bin:${PATH}" | |
# Set up frontend | |
COPY --from=frontend-builder /app/frontend/build /app/static | |
EXPOSE 7860 | |
CMD ["uvicorn", "backend.app.main:app", "--host", "0.0.0.0", "--port", "7860"] | |