Skip to content

Commit

Permalink
Merge pull request aerokube#231 from vania-pooh/master
Browse files Browse the repository at this point in the history
Installing libavcodec57 for Firefox (fixes aerokube#110, fixes aerokube#184)
  • Loading branch information
vania-pooh authored Apr 6, 2020
2 parents 32bb43e + b4648fe commit e1c25fc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion selenium/firefox/apt/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN \
add-apt-repository -y $PPA \
) || true && \
apt-get update && \
apt-get -y --no-install-recommends install iproute2 $PACKAGE=$VERSION && \
apt-get -y --no-install-recommends install iproute2 libavcodec57 $PACKAGE=$VERSION && \
( [ "$PACKAGE" = "firefox-trunk" ] && ln /usr/bin/$PACKAGE /usr/bin/firefox ) || true && \
firefox --version && \
($CLEANUP && rm -Rf /tmp/* && rm -Rf /var/lib/apt/lists/*) || true
3 changes: 2 additions & 1 deletion selenium/firefox/local/Dockerfile.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@ RUN \
( \
wget -O firefox.deb http://apt-repo:8080/firefox_amd64.deb && \
apt-get update && \
apt-get -y --no-install-recommends install iproute2 libavcodec57 && \
apt-get -y install libgtk-3-0 libstartup-notification0 libdbus-glib-1-2 \
) || \
( \
wget -O firefox.deb http://apt-repo:8080/firefox_i386.deb && \
dpkg --add-architecture i386 && \
apt-get update && \
apt-get -y --no-install-recommends install iproute2 && \
apt-get -y --no-install-recommends install iproute2 libavcodec57 && \
apt-get -y install libc6:i386 libncurses5:i386 libstdc++6:i386 libgtk-3-0:i386 libasound2:i386 libdbus-glib-1-2:i386 libxt6:i386 libatomic1:i386 libcairo-gobject2:i386 libstartup-notification0:i386 libx11-xcb1:i386 && \
mkdir flashplayer && \
cd flashplayer && \
Expand Down

0 comments on commit e1c25fc

Please sign in to comment.