Rustendo/Dockerfile

10 lines
No EOL
173 B
Docker

FROM rust:1.77
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"]