remove ffmpeg
Some checks failed
tests / test (push) Failing after 1m55s
tests / pre-commit (push) Failing after 3m33s
tests / fmt (push) Successful in 7m33s
tests / build (push) Successful in 8m15s
tests / clippy (push) Successful in 8m19s
deploy / release-image (push) Successful in 11m24s

This commit is contained in:
2024-11-27 13:30:29 +01:00
parent 6601396a88
commit a3e9175ea8
3 changed files with 6 additions and 5 deletions

8
Cargo.lock generated
View File

@@ -1384,9 +1384,9 @@ dependencies = [
[[package]] [[package]]
name = "libc" name = "libc"
version = "0.2.165" version = "0.2.166"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcb4d3d38eab6c5239a362fa8bae48c03baf980a6e7079f063942d563ef3533e" checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36"
[[package]] [[package]]
name = "libm" name = "libm"
@@ -3536,9 +3536,9 @@ dependencies = [
[[package]] [[package]]
name = "tracing-attributes" name = "tracing-attributes"
version = "0.1.27" version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",

View File

@@ -20,7 +20,7 @@ RUN cargo build --release --locked
# Release image # Release image
FROM debian:bullseye-slim FROM debian:bullseye-slim
RUN apt-get update && apt-get install -y python3-pip ffmpeg RUN apt-get update && apt-get install -y python3-pip
RUN pip install -U yt-dlp RUN pip install -U yt-dlp
COPY --from=build /app/target/release/ohrwurm . COPY --from=build /app/target/release/ohrwurm .

View File

@@ -2,6 +2,7 @@ services:
ohrwurm: ohrwurm:
container_name: ohrwurm container_name: ohrwurm
image: jheuel/ohrwurm:latest image: jheuel/ohrwurm:latest
# build: .
restart: unless-stopped restart: unless-stopped
volumes: volumes:
- ./data:/data - ./data:/data