From 48be94e956af5163d8c669d0db4f1b9d626fcda9 Mon Sep 17 00:00:00 2001 From: a5chin Date: Fri, 24 May 2024 01:43:29 +0900 Subject: [PATCH] fix: rye url for setup --- .devcontainer/Dockerfile | 2 +- Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 6d5b7b5..a58d761 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && \ curl SHELL [ "/bin/bash", "-o", "pipefail", "-c" ] -RUN curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash && \ +RUN curl -sSf https://rye.astral.sh/get | RYE_INSTALL_OPTION="--yes" bash && \ rye config --set-bool behavior.global-python=true && \ rye config --set-bool behavior.use-uv=true diff --git a/Dockerfile b/Dockerfile index 282e892..57a0e83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && \ curl SHELL [ "/bin/bash", "-o", "pipefail", "-c" ] -RUN curl -sSf https://rye-up.com/get | RYE_INSTALL_OPTION="--yes" bash && \ +RUN curl -sSf https://rye.astral.sh/get | RYE_INSTALL_OPTION="--yes" bash && \ rye config --set-bool behavior.global-python=true && \ rye config --set-bool behavior.use-uv=true