Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 1680942

Browse files
committedMay 27, 2025
update devcontainer
1 parent 37d2a92 commit 1680942

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎.devcontainer/Dockerfile

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,20 @@
1-
FROM python:3.10-slim
1+
FROM ubuntu:24.04
22

3-
# Install Node.js and npm
3+
# Install Python and other dependencies
44
RUN apt-get update && apt-get install -y \
5+
python3.12 \
6+
python3-pip \
57
wget \
68
graphviz \
79
git \
810
zsh \
911
xz-utils \
1012
build-essential \
1113
curl \
12-
&& apt-get install -y ffmpeg \
14+
software-properties-common \
15+
ffmpeg \
1316
&& apt-get clean \
1417
&& ffmpeg -version
1518

16-
1719
RUN sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
18-
RUN pip install uv
20+
RUN pip3 install --break-system-packages uv

0 commit comments

Comments
 (0)
Please sign in to comment.