Fix Docker build and restore ubuntu 24.04 as base Docker image

Ubuntu version changed on suspicion of Ghostscript 10, but that issue is resolved.
This commit is contained in:
James R. Barlow
2024-12-02 11:36:26 -08:00
parent 9a075039b5
commit 7565d20c0a
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -29,12 +29,12 @@ COPY . /app
WORKDIR /app
RUN curl -LsSf https://astral.sh/uv/0.5.4/install.sh | sh
COPY --from=ghcr.io/astral-sh/uv:0.5.5 /uv /uvx /bin/
ENV UV_COMPILE_BYTECODE=1 UV_LINK_MODE=copy
# Instead of restarting the shell, use uv directly from its installed location.
RUN /root/.cargo/bin/uv sync --extra test --extra webservice --extra watcher
RUN uv sync --extra test --extra webservice --extra watcher
FROM base