Skip to content

Commit add01af

Browse files
authored
fix: adjust docker build dependency sync (#64)
1 parent 82a6bc9 commit add01af

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
88
ENV PATH="/root/.local/bin:$PATH"
99

1010
WORKDIR /app
11-
COPY docker/pyproject.deps.toml uv.lock ./
12-
RUN uv sync --no-dev --frozen --manifest-path pyproject.deps.toml
11+
COPY docker/pyproject.deps.toml ./pyproject.toml
12+
COPY uv.lock ./
13+
RUN uv sync --no-dev --frozen && mv pyproject.toml pyproject.deps.toml
1314

1415
COPY . .
1516
ENTRYPOINT ["./entrypoint.sh"]

0 commit comments

Comments
 (0)