interlude 0.1.0

Convert share links of different music streaming services.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM rustlang/rust:nightly as builder

WORKDIR /app
COPY Cargo.toml Cargo.lock ./
COPY src ./src
RUN cargo build --release

FROM debian:bookworm-slim
RUN apt-get update && apt-get install -y ca-certificates && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY --from=builder /app/target/release/interlude .
COPY public ./public
EXPOSE 5000
CMD ["./interlude"]