mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
5ff476c6f9
* Install multiple ffmpeg versions and add config to make it configurable * Update docs * Run ffprobe too * Cleanup * Apply config to go2rtc as well * Fix ffmpeg bin * Docs * Restore path * Cleanup env var * Fix ffmpeg path for encoding * Fix export * Formatting
19 lines
434 B
Docker
19 lines
434 B
Docker
# syntax=docker/dockerfile:1.4
|
|
|
|
# https://askubuntu.com/questions/972516/debian-frontend-environment-variable
|
|
ARG DEBIAN_FRONTEND=noninteractive
|
|
|
|
FROM deps AS rpi-deps
|
|
ARG TARGETARCH
|
|
|
|
RUN rm -rf /usr/lib/btbn-ffmpeg/
|
|
|
|
# Install dependencies
|
|
RUN --mount=type=bind,source=docker/rpi/install_deps.sh,target=/deps/install_deps.sh \
|
|
/deps/install_deps.sh
|
|
|
|
ENV LIBAVFORMAT_VERSION_MAJOR=58
|
|
|
|
WORKDIR /opt/frigate/
|
|
COPY --from=rootfs / /
|