You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are different tags for different base images available:
17
17
18
-
-`latest` - based on `ubuntu:jammy`
18
+
-`latest` - based on `ubuntu:noble`
19
19
-`focal` - based on `ubuntu:focal`
20
20
-`bullseye` - based on `debian:bullseye`
21
-
-`jammy-cuda-12.2.2` - based on `nvidia/cuda:12.2.2-jammy`
21
+
-`noble-cuda-12.6.3` - based on `nvidia/cuda:12.6.3-ubuntu24.04`
22
22
- ... and more
23
23
24
24
## Usage with shell-hook
@@ -27,7 +27,7 @@ The following example uses the pixi docker image as a base image for a multi-sta
27
27
It also makes use of the `shell-hook` feature of pixi to define a convenient entry point (after executing the `shell-hook` script, the environment is activated.
28
28
29
29
```Dockerfile
30
-
FROM ghcr.io/prefix-dev/pixi:0.18.0 AS build
30
+
FROM ghcr.io/prefix-dev/pixi:0.40.0 AS build
31
31
32
32
# copy source code, pixi.toml and pixi.lock to the container
# extend the shell-hook script to run the command passed to the container
44
44
RUN echo 'exec "$@"' >> /shell-hook.sh
45
45
46
-
FROM ubuntu:22.04 AS production
46
+
FROM ubuntu:24.04 AS production
47
47
48
48
# only copy the production environment into prod container
49
49
# please note that the "prefix" (path) needs to stay the same as in the build container
@@ -65,17 +65,17 @@ There are images based on `ubuntu`, `debian` and `nvidia/cuda` available.
65
65
66
66
### Ubuntu
67
67
68
-
The `ubuntu:jammy` (22.04) based image is the default base image. It is used for the `latest` and `0.x.y` tag.
68
+
The [`ubuntu:noble`](https://hub.docker.com/_/ubuntu) (24.04) based image is the default base image. It is used for the `latest` and `0.x.y` tag.
69
69
70
-
There are also images based on `ubuntu:focal` (20.04), `ubuntu:mantic` (23.10) and `ubuntu:noble` (24.04) available.
70
+
There are also images based on `ubuntu:focal` (20.04), `ubuntu:jammy` (22.04), `ubuntu:oracular` (24.10) and `ubuntu:plucky` (25.04) available.
71
71
These images use the tags `focal`, `0.x.y-focal`, ...
72
72
73
73
### Debian
74
74
75
-
Images based on `debian:bullseye`, `debian:bullseye-slim` (11), `debian:bookworm` and `debian:bookworm-slim` (12) are available.
75
+
Images based on [`debian:bullseye`](https://hub.docker.com/_/debian), `debian:bullseye-slim` (11), `debian:bookworm` and `debian:bookworm-slim` (12) are available.
76
76
77
77
These images have the tags `bullseye`, `0.x.y-bullseye`, ...
78
78
79
79
### NVIDIA/CUDA
80
80
81
-
Images based on `nvidia/cuda` are available using the tags `cuda-<cuda-version>-jammy`, `cuda-<cuda-version>-focal`, `0.x.y-cuda-<cuda-version>-jammy`, ...
81
+
Images based on [`nvidia/cuda`](https://hub.docker.com/r/nvidia/cuda) are available using the tags `cuda-<cuda-version>-jammy`, `cuda-<cuda-version>-focal`, `0.x.y-cuda-<cuda-version>-jammy`, ...
0 commit comments