# Dockerfile for building bootc ARG release_name=unstable FROM buildpack-deps:${release_name} # Install build dependencies RUN apt-get update && apt-get install -y \ cargo \ rustc \ pkg-config \ libssl-dev \ libostree-dev \ git \ curl \ && rm -rf /var/lib/apt/lists/* # Install Rust toolchain RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y ENV PATH="/root/.cargo/bin:${PATH}" # Set working directory WORKDIR /workspace # Default command CMD ["bash"]