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

Commit

Permalink
remove sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
ynot01 committed Dec 5, 2023
1 parent b82139c commit d58a25c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ RUN chmod g+rw ./piper_cache/

# Compile and install fresh FFmpeg from sources:
# See: https://trac.ffmpeg.org/wiki/CompilationGuide/Ubuntu
RUN sudo apt-get update -qq && sudo apt-get -y install \
RUN apt-get update -qq && apt-get -y install \
autoconf \
automake \
build-essential \
Expand All @@ -97,7 +97,7 @@ RUN sudo apt-get update -qq && sudo apt-get -y install \
wget \
yasm \
zlib1g-dev
RUN sudo apt install libunistring-dev libaom-dev libdav1d-dev -y
RUN apt install libunistring-dev libaom-dev libdav1d-dev -y
RUN mkdir -p ~/ffmpeg_sources ~/bin
RUN cd ~/ffmpeg_sources && \
wget https://www.nasm.us/pub/nasm/releasebuilds/2.16.01/nasm-2.16.01.tar.bz2 && \
Expand Down

0 comments on commit d58a25c

Please sign in to comment.