Skip to content

Commit

Permalink
Dockerfile.cuda: fix typo in FFMPEG_TAG
Browse files Browse the repository at this point in the history
  • Loading branch information
nilfm99 committed Aug 7, 2024
1 parent 8c38ef3 commit a7931b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.cuda
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ ARG CUDA_VERSION=12.3.1
FROM nvidia/cuda:$CUDA_VERSION-devel-ubuntu22.04

ARG VMAF_TAG=master
ARG FFFMPEG_TAG=master
ARG FFMPEG_TAG=master

RUN DEBIAN_FRONTEND=noninteractive apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y libopenjp2-7-dev \
ninja-build cmake git python3 python3-pip nasm xxd pkg-config curl unzip

RUN git clone https://github.com/Netflix/vmaf.git && cd vmaf && git checkout $VMAF_TAG

RUN git clone https://github.com/FFmpeg/FFmpeg.git && cd FFmpeg && git checkout $FFFMPEG_TAG
RUN git clone https://github.com/FFmpeg/FFmpeg.git && cd FFmpeg && git checkout $FFMPEG_TAG

RUN git clone https://github.com/FFmpeg/nv-codec-headers.git && cd nv-codec-headers && make && make install

Expand Down

0 comments on commit a7931b3

Please sign in to comment.