1
0
mirror of https://github.com/containers/youki synced 2025-04-04 22:59:11 +02:00
youki/.devcontainer/Dockerfile
Kotaro Inoue 0957dcf6e9 Remove problematic comments between package name in apt install
Signed-off-by: Kotaro Inoue <k.musaino@gmail.com>
2025-03-02 02:48:41 +09:00

42 lines
815 B
Docker

ARG VARIANT="bullseye"
FROM mcr.microsoft.com/vscode/devcontainers/rust:1-${VARIANT}
# Install docker with youki
COPY <<EOF /etc/docker/daemon.json
{
"runtimes": {
"youki": {
"path": "/workspaces/youki/youki"
}
}
}
EOF
RUN <<EOF
apt-get update
# For building
apt-get install -y \
build-essential \
git \
libclang-dev \
libelf-dev \
libseccomp-dev \
libssl-dev \
libsystemd-dev \
pkg-config
# For debugging
apt-get install -y \
podman \
bpftrace
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to /usr/bin
# nightly build is required for `cargo fmt` as `rustfmt.toml` uses unstable features.
curl https://sh.rustup.rs -sSf | sh -s -- -y
rustup install nightly
rustup component add rustfmt
rustup component add clippy
EOF