Dockerfile

This commit is contained in:
2024-02-02 21:13:40 +01:00
parent f6961c3b3f
commit 88a5cae8d1

19
Dockerfile Normal file
View File

@@ -0,0 +1,19 @@
FROM rust:1.71-alpine
RUN apk add --update \
alpine-sdk \
ffmpeg \
youtube-dl \
pkgconfig \
cmake \
openssl-dev \
musl-dev \
openssl
WORKDIR /app
COPY . .
RUN cargo build --release
CMD ["./target/release/lyra"]