Skip to content

Commit 93dc050

Browse files
authored
uv Gitpod (#21)
* Update .gitpod.yml * Update .gitpod.Dockerfile
1 parent 4b3ee8b commit 93dc050

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

.gitpod.Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM axonasif/workspace-python:debug2
22

3-
RUN pyenv install 3.11 \
4-
&& pyenv global 3.11
3+
# Install uv
4+
RUN curl -LsSf https://astral.sh/uv/install.sh | sh
55

66
# Install gh CLI
77
RUN (curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh || wget -t 3 -qO- https://cli.doppler.com/install.sh) | sudo sh

.gitpod.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,9 @@ tasks:
1111
1212
- name: Install deps and enter shell
1313
command: |
14-
poetry install
1514
printf "\033[3J\033c\033[3J"
1615
printf '• %s\n' \
1716
'Run this command to start bot:' \
18-
'doppler run --config main --mount BotConfig.toml --mount-template BotConfig_tmpl.toml -- poetry run python3 -m glu'
17+
'doppler run --config main --mount BotConfig.toml --mount-template BotConfig_tmpl.toml -- uv run python3 -m glu'
1918
20-
poetry shell -q
19+
uv run $SHELL

0 commit comments

Comments
 (0)