qtcloud-devops-cli 0.10.0-alpha.1

量潮DevOps云命令行工具
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM rust:slim

# System dependencies for native crate builds
RUN apt-get update && apt-get install -y \
    libssl-dev \
    pkg-config \
    python3-dev \
    && rm -rf /var/lib/apt/lists/*

# Coverage tool
RUN cargo install cargo-llvm-cov

WORKDIR /app