Rustendo/Dockerfile

11 lines
174 B
Text
Raw Normal View History

FROM rust:1.80
WORKDIR /usr/src/app
COPY . .
RUN apt-get update
2024-04-04 07:21:25 +00:00
RUN apt-get install -y cmake yt-dlp
RUN cargo build --release
CMD ["/usr/src/app/target/release/rustendo"]