We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82a6bc9 commit add01afCopy full SHA for add01af
Dockerfile
@@ -8,8 +8,9 @@ RUN curl -LsSf https://astral.sh/uv/install.sh | sh
8
ENV PATH="/root/.local/bin:$PATH"
9
10
WORKDIR /app
11
-COPY docker/pyproject.deps.toml uv.lock ./
12
-RUN uv sync --no-dev --frozen --manifest-path pyproject.deps.toml
+COPY docker/pyproject.deps.toml ./pyproject.toml
+COPY uv.lock ./
13
+RUN uv sync --no-dev --frozen && mv pyproject.toml pyproject.deps.toml
14
15
COPY . .
16
ENTRYPOINT ["./entrypoint.sh"]
0 commit comments