First Commit

The main feature of the operator is implemented, but it's not ready
for real use yet.
This commit is contained in:
Nikolai Rodionov
2023-11-24 18:42:45 +01:00
commit e857c359e0
21 changed files with 3381 additions and 0 deletions

9
Containerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM rust:1.74.0-alpine3.18 AS builder
RUN apk update && apk add --no-cache musl-dev
WORKDIR /src
COPY . /src
RUN cargo build --release
FROM alpine
COPY --from=builder /src/target/release/shoebill /shoebill
ENTRYPOINT /shoebill