We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5eb7219 commit d632facCopy full SHA for d632fac
Dockerfile
@@ -7,20 +7,8 @@ RUN npm run build
7
8
# Stage 2: Build Backend
9
FROM ghcr.io/astral-sh/uv:python3.12-bookworm-slim AS backend-builder
10
-WORKDIR /flare-ai-social
11
-
12
-# Install dos2unix for line ending conversion
13
-RUN apt-get update && \
14
- apt-get install -y dos2unix && \
15
- rm -rf /var/lib/apt/lists/*
16
17
-# Copy files first
18
ADD . /flare-ai-social
19
20
-# Convert line endings for critical files
21
-RUN find . -type f -name "pyproject.toml" -o -name "uv.lock" | xargs dos2unix
22
23
-# Install dependencies
+WORKDIR /flare-ai-social
24
RUN uv sync --frozen
25
26
# Stage 3: Final Image
0 commit comments