File tree 2 files changed +4
-5
lines changed
2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change 1
1
FROM axonasif/workspace-python:debug2
2
2
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
5
5
6
6
# Install gh CLI
7
7
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
Original file line number Diff line number Diff line change @@ -11,10 +11,9 @@ tasks:
11
11
12
12
- name : Install deps and enter shell
13
13
command : |
14
- poetry install
15
14
printf "\033[3J\033c\033[3J"
16
15
printf '• %s\n' \
17
16
'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'
19
18
20
- poetry shell -q
19
+ uv run $SHELL
You can’t perform that action at this time.
0 commit comments