moq-rs/Dockerfile

32 lines
1.1 KiB
Docker
Raw Normal View History

2023-11-21 22:15:34 +00:00
FROM rust:bookworm as builder
# Create a build directory and copy over all of the files
WORKDIR /build
2023-11-21 22:15:34 +00:00
COPY . ./
# Reuse a cache between builds.
# I tried to `cargo install`, but it doesn't seem to work with workspaces.
# There's also issues with the cache mount since it builds into /usr/local/cargo/bin, and we can't mount that without clobbering cargo itself.
# We instead we build the binaries and copy them to the cargo bin directory.
RUN --mount=type=cache,target=/usr/local/cargo/registry \
--mount=type=cache,target=/build/target \
cargo build --release && cp /build/target/release/moq-* /usr/local/cargo/bin
2023-11-21 22:15:34 +00:00
# moq-rs image with just the binaries
FROM debian:bookworm-slim
RUN apt-get update && \
2023-11-21 22:15:34 +00:00
apt-get install -y --no-install-recommends curl libssl3 && \
rm -rf /var/lib/apt/lists/*
2023-09-17 07:20:57 +00:00
LABEL org.opencontainers.image.source=https://github.com/kixelated/moq-rs
2023-09-17 07:22:57 +00:00
LABEL org.opencontainers.image.licenses="MIT OR Apache-2.0"
2023-09-17 07:20:57 +00:00
2023-11-21 22:15:34 +00:00
COPY --from=builder /usr/local/cargo/bin /usr/local/bin
# Entrypoint to load relay TLS config in Fly:
COPY deploy/fly-relay.sh .
2023-09-15 20:10:13 +00:00
2023-11-21 22:15:34 +00:00
# Default to moq-relay:
CMD ["moq-relay"]