You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
263 B
Docker
12 lines
263 B
Docker
2 years ago
|
FROM rust:alpine as builder
|
||
|
RUN apk add --no-cache musl-dev
|
||
|
WORKDIR /usr/src/svr
|
||
|
COPY . .
|
||
|
RUN cargo build --release
|
||
|
|
||
|
FROM alpine:edge
|
||
|
RUN apk add --no-cache yt-dlp
|
||
|
COPY --from=builder /usr/src/svr/target/release/svr /usr/local/bin/svr
|
||
|
|
||
|
CMD ["/usr/local/bin/svr"]
|