Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ WORKDIR /build
ENV PATH="/root/.local/bin:$PATH"

COPY pyproject.toml ./
COPY src/ src/
RUN uv pip install . --system --target /build/python

COPY src/ src/
COPY README.md ./

FROM python:3.13-slim
Expand All @@ -27,7 +27,6 @@ RUN addgroup --system fessctl && adduser --system --group fessctl
WORKDIR /app

COPY --from=builder /build/python /app/
COPY --from=builder /build/src/fessctl /app/fessctl

RUN chown -R fessctl:fessctl /app

Expand Down