You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
461 B
14 lines
461 B
FROM mcr.microsoft.com/devcontainers/base:jammy
|
|
|
|
ARG PIXI_VERSION=v0.42.1
|
|
|
|
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" \
|
|
&& chmod +x /usr/local/bin/pixi \
|
|
&& pixi info
|
|
|
|
# set some user and workdir settings to work nicely with vscode
|
|
USER vscode
|
|
WORKDIR /home/vscode
|
|
|
|
RUN echo 'eval "$(pixi completion -s bash)"' >> /home/vscode/.bashrc
|