Skip to content

Commit d632fac

Browse files
committed
fix: undo dockerfile changes
1 parent 5eb7219 commit d632fac

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

Dockerfile

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,8 @@ RUN npm run build
77

88
# Stage 2: Build Backend
99
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
1810
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
11+
WORKDIR /flare-ai-social
2412
RUN uv sync --frozen
2513

2614
# Stage 3: Final Image

0 commit comments

Comments
 (0)