-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
30 lines (20 loc) · 815 Bytes
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Build
FROM docker.io/library/rust:bookworm as builder
WORKDIR /usr/src/cluster-controller
# Clang is required for virt-sys bindgen
RUN apt-get update && \
apt-get install -y clang llvm libclang-dev librados-dev librbd-dev libvirt-dev && \
rm -rf /var/lib/apt/lists/*
# Only install dependencies
COPY Cargo.toml Cargo.lock build.rs .
RUN mkdir src && \
echo "fn main() {}" >> src/main.rs && \
cargo build --release
COPY . .
RUN cargo install --path .
# Run
FROM quay.io/centos/centos:stream9
RUN dnf update -y && \
dnf install -y centos-release-ceph-reef centos-release-nfv-openvswitch && \
dnf install -y libvirt-libs librbd1 librados2 iproute openvswitch2.17 tcpdump compat-openssl11
COPY --from=builder /usr/local/cargo/bin/cluster-controller /usr/local/bin/cluster-controller