We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37d2a92 commit 1680942Copy full SHA for 1680942
.devcontainer/Dockerfile
@@ -1,18 +1,20 @@
1
-FROM python:3.10-slim
+FROM ubuntu:24.04
2
3
-# Install Node.js and npm
+# Install Python and other dependencies
4
RUN apt-get update && apt-get install -y \
5
+ python3.12 \
6
+ python3-pip \
7
wget \
8
graphviz \
9
git \
10
zsh \
11
xz-utils \
12
build-essential \
13
curl \
- && apt-get install -y ffmpeg \
14
+ software-properties-common \
15
+ ffmpeg \
16
&& apt-get clean \
17
&& ffmpeg -version
18
-
19
RUN sh -c "$(wget https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh -O -)"
-RUN pip install uv
20
+RUN pip3 install --break-system-packages uv
0 commit comments