From ae6eac5f7b5ddbefc6753d8a9227f226df294e4c Mon Sep 17 00:00:00 2001 From: Ruben Fiszel Date: Thu, 10 Oct 2024 02:30:42 +0200 Subject: [PATCH] feat: upgrade to deno 2 --- Dockerfile | 2 +- lsp/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8f5ccc71e0..a896a87b26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -175,7 +175,7 @@ RUN /usr/local/bin/python3 -m pip install pip-tools COPY --from=builder /frontend/build /static_frontend COPY --from=builder /windmill/target/release/windmill ${APP}/windmill -COPY --from=denoland/deno:1.46.3 --chmod=755 /usr/bin/deno /usr/bin/deno +COPY --from=denoland/deno:2.0.0 --chmod=755 /usr/bin/deno /usr/bin/deno COPY --from=oven/bun:1.1.27 /usr/local/bin/bun /usr/bin/bun diff --git a/lsp/Dockerfile b/lsp/Dockerfile index e8241c31a3..be76edb450 100644 --- a/lsp/Dockerfile +++ b/lsp/Dockerfile @@ -26,7 +26,7 @@ ENV GOBIN=/usr/local/go/bin RUN /usr/local/go/bin/go install -v golang.org/x/tools/gopls@latest RUN pip3 install tornado python-lsp-jsonrpc ruff-lsp -COPY --from=denoland/deno:1.46.1 --chmod=755 /usr/bin/deno /usr/bin/deno +COPY --from=denoland/deno:2.0.0 --chmod=755 /usr/bin/deno /usr/bin/deno COPY Pipfile .