File: Dockerfile

package info (click to toggle)
python-xarray 2025.12.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 13,456 kB
  • sloc: python: 118,717; makefile: 269
file content (13 lines) | stat: -rw-r--r-- 461 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM mcr.microsoft.com/devcontainers/base:jammy

ARG PIXI_VERSION=v0.59.0

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