Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Install ffmpeg 2
Browse files Browse the repository at this point in the history
  • Loading branch information
wanjohiryan committed Jun 24, 2023
1 parent b787d58 commit 1113bfe
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions docker/nvidia/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
#! Some code was copied or inspired by https://github.com/ehfd/nvidia-dind/blob/main/Dockerfile
# Which is licensed under MPL-2.0 license
# Thanks ehfd :)
FROM ghcr.io/jrottenberg/ffmpeg/5.0.1-ubuntu2004:latest as ffmpeg

ARG UBUNTU_RELEASE=22.04
FROM ubuntu:${UBUNTU_RELEASE}

Expand Down Expand Up @@ -51,15 +53,10 @@ RUN wget -nv -O /usr/bin/winetricks https://raw.githubusercontent.com/Winetricks

#
#Install ffmpeg5
RUN apt update -y; \
apt upgrade -y; \
apt install -y ffmpeg; \
#check the installed version
ffmpeg -version; \
#
#clean up
#
rm -rf /var/lib/apt/lists/* /var/cache/apt/*
COPY --from=ffmpeg /usr/local /usr/local/

#check the installed version
RUN ffmpeg -version;

#
# NVIDIA Container Toolkit & Docker
Expand Down

0 comments on commit 1113bfe

Please sign in to comment.