Skip to content

Commit

Permalink
Merge pull request #525 from rfcx/fix/ffmpeg
Browse files Browse the repository at this point in the history
Upgrade ffmpeg and add require shared libs
  • Loading branch information
Tooseriuz authored Jan 8, 2024
2 parents 35ab0ea + e75a706 commit 143369a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
* **core**: Add `Create Owner to role and role permission table` migration files
* **core**: Add `include_roles` and `permissions` params to `project/:id/users` endpoint
* **core**: Fix test cases after above changes
* **media**: Fix `pad_dur` not available by updating ffmpeg version to 6.1

## 1.3.4 (2023-12-xx)
### Bug Fixes
Expand Down
8 changes: 6 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
FROM jrottenberg/ffmpeg:4.1-ubuntu
FROM linuxserver/ffmpeg:version-6.1-cli
FROM node:20.9.0 as base

COPY --from=0 / /
COPY --from=0 /usr/lib/aarch64-linux-gnu/libv4l2.so.0 /usr/lib/aarch64-linux-gnu/libv4l2.so.0
COPY --from=0 /usr/lib/aarch64-linux-gnu/libv4lconvert.so.0 /usr/lib/aarch64-linux-gnu/libv4lconvert.so.0
COPY --from=0 /usr/lib/aarch64-linux-gnu/libjpeg.so.8 /usr/lib/aarch64-linux-gnu/libjpeg.so.8
COPY --from=0 /usr/local/lib /usr/local/lib
COPY --from=0 /usr/local/bin /usr/local/bin

RUN apt update && apt install -y sox libsox-fmt-mp3 pngcrush imagemagick

Expand Down

0 comments on commit 143369a

Please sign in to comment.