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