5 lines
184 B
Docker
5 lines
184 B
Docker
FROM docker.io/node:24-trixie
|
|
RUN apt-get -y update && \
|
|
apt-get -y install sudo jq buildah podman && \
|
|
(echo '[storage]';echo 'driver = "vfs"') > /etc/containers/storage.conf
|