22 lines
1.2 KiB
Docker
22 lines
1.2 KiB
Docker
FROM rust:1.97-bookworm AS rust-build
|
|
RUN apt-get update && apt-get install -y --no-install-recommends pkg-config libssl-dev libasound2-dev && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY apps/server-rust/Cargo.toml apps/server-rust/Cargo.lock ./apps/server-rust/
|
|
COPY vendor/blivedm ./vendor/blivedm
|
|
COPY apps/server-rust/src ./apps/server-rust/src
|
|
COPY apps/server-rust/migrations ./apps/server-rust/migrations
|
|
RUN --mount=type=cache,target=/usr/local/cargo/registry \
|
|
--mount=type=cache,target=/app/target-cache \
|
|
CARGO_TARGET_DIR=/app/target-cache cargo build --manifest-path apps/server-rust/Cargo.toml --release && \
|
|
cp /app/target-cache/release/lxc-stream-server /app/lxc-stream-server
|
|
|
|
FROM debian:bookworm-slim
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates libasound2 libssl3 && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
# The upstream client logs full upstream HTTP responses at INFO, which can include
|
|
# account metadata and short-lived connection tokens. Keep application lifecycle
|
|
# logs while suppressing dependency INFO output by default.
|
|
COPY --from=rust-build /app/lxc-stream-server /app/lxc-stream-server
|
|
EXPOSE 9719
|
|
CMD ["/app/lxc-stream-server", "--config", "/app/config.toml"]
|