10 lines
174 B
Docker
10 lines
174 B
Docker
FROM rust:1.80
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY . .
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y cmake yt-dlp
|
|
RUN cargo build --release
|
|
|
|
CMD ["/usr/src/app/target/release/rustendo"]
|