2024-09-18 22:23:20 +00:00
|
|
|
FROM rust:1.81
|
2024-04-04 06:51:49 +00:00
|
|
|
|
|
|
|
WORKDIR /usr/src/app
|
|
|
|
COPY . .
|
|
|
|
|
2024-09-18 22:23:20 +00:00
|
|
|
RUN echo 'deb http://deb.debian.org/debian bookworm-backports main' >> /etc/apt/sources.list
|
2024-04-04 06:51:49 +00:00
|
|
|
RUN apt-get update
|
2024-09-18 22:23:20 +00:00
|
|
|
RUN apt-get install -y cmake yt-dlp/bookworm-backports
|
2024-04-04 06:51:49 +00:00
|
|
|
RUN cargo build --release
|
|
|
|
|
2024-07-26 14:54:31 +00:00
|
|
|
CMD ["/usr/src/app/target/release/rustendo"]
|