21 lines
632 B
Docker
21 lines
632 B
Docker
FROM browsers/base:7.3.6
|
|
|
|
ARG VERSION
|
|
ARG PACKAGE=firefox
|
|
ARG PPA
|
|
|
|
LABEL browser=$PACKAGE:$VERSION
|
|
|
|
RUN \
|
|
( [ "$PPA" != "" ] && \
|
|
apt-get update && \
|
|
apt-get install -y software-properties-common && \
|
|
apt-get update && \
|
|
add-apt-repository -y $PPA \
|
|
) || true && \
|
|
apt-get update && \
|
|
apt-get -y --no-install-recommends install iproute2 libavcodec58 $PACKAGE=$VERSION && \
|
|
( [ "$PACKAGE" != "firefox" ] && ln /usr/bin/$PACKAGE /usr/bin/firefox ) || true && \
|
|
firefox --version && \
|
|
rm -Rf /tmp/* && rm -Rf /var/lib/apt/lists/*
|