File size: 996 Bytes
58973c7
 
 
 
 
50f8987
58973c7
50f8987
 
58973c7
50f8987
58973c7
 
 
 
0f046d0
 
654e910
 
 
 
b90d5bf
 
 
fafed13
 
b90d5bf
 
 
82a3bbe
 
58973c7
82a3bbe
 
cda4639
 
c1a68be
f5e46c1
58973c7
f5e46c1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# 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"]