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 8c6852c commit 01aedb5Copy full SHA for 01aedb5
.devcontainer/Dockerfile
@@ -0,0 +1,13 @@
1
+FROM mcr.microsoft.com/devcontainers/base:noble
2
+
3
+ARG PIXI_VERSION=v0.49.0
4
5
+RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \
6
+ && chmod +x /usr/local/bin/pixi \
7
+ && pixi info
8
9
+# set some user and workdir settings to work nicely with vscode
10
+USER vscode
11
+WORKDIR /home/vscode
12
13
+RUN echo 'eval "$(pixi completion -s bash)"' >> /home/vscode/.bashrc
0 commit comments