bump firefox to 56.0

master
Andy 7 years ago
parent 4e456f6d90
commit e8975f1f7d

@ -36,7 +36,7 @@ RUN echo "enable-shm = no" >> /etc/pulse/client.conf
# Mozilla Firefox
# Deps: bzip2 libgtk-3-0 libdbus-glib-1-2 libxt6
ENV FIREFOX_VER 54.0.1
ENV FIREFOX_VER 56.0
ADD https://download-installer.cdn.mozilla.net/pub/firefox/releases/$FIREFOX_VER/linux-x86_64/en-US/firefox-$FIREFOX_VER.tar.bz2 /tmp/firefox.tar.bz2
RUN cd /tmp && \
mkdir /opt/mozilla && \

@ -0,0 +1,20 @@
ifeq (, $(shell docker --version))
$(error "Please install docker")
endif
NS ?= andrey01
NAME ?= firefox
VERSION ?= 56.0
default: build
build:
docker build --pull -t $(NS)/$(NAME):$(VERSION) -t $(NS)/$(NAME):latest -f Dockerfile -- .
publish:
docker push $(NS)/$(NAME):$(VERSION)
docker push $(NS)/$(NAME):latest
clean:
docker rmi $(NS)/$(NAME):$(VERSION)
docker rmi $(NS)/$(NAME):latest

@ -5,8 +5,7 @@ volumes:
services:
firefox:
# docker build -t local/firefox .
image: local/firefox
image: andrey01/firefox:56.0
network_mode: bridge
devices:
- /dev/dri

Loading…
Cancel
Save