This commit is contained in:
Bert van der Weerd 2021-09-28 11:23:02 +02:00
parent 1af2db3cc8
commit 2523ec7e57
No known key found for this signature in database
GPG key ID: 4CFABB96ADE0F5B1
12 changed files with 54 additions and 47 deletions

View file

@ -1,9 +0,0 @@
all :
make -C debian
make -C fedora
make -C ubuntu
make -C mint
clean :
sudo docker image prune --force

View file

@ -1,26 +0,0 @@
FROM fedora
MAINTAINER Bert van der Weerd <bert@stanzabird.nl>
RUN dnf -y update
# locale stuff, see: https://superuser.com/questions/959380/how-do-i-install-generate-all-locales-on-fedora
RUN echo "%_install_langs C:en:en_US:en_US.UTF-8" > /etc/rpm/macros.image-language-conf
RUN dnf -y reinstall glibc-common
# Install build dependencies..
run dnf -y install wget python3 python3-devel mercurial
# Build mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run echo '***' python3 bootstrap.py --no-interactive --application-choice=browser
#
## packages required to build and run apiserver.
#RUN dnf -y install g++ gcc make automake autoconf libtool libcurl-devel
#COPY apiserver-0.1.1.tar.gz /
#WORKDIR /
#RUN tar xvf apiserver-0.1.1.tar.gz
#WORKDIR apiserver-0.1.1
#RUN zsh ./configure --prefix=/usr --disable-dependency-tracking
#RUN ["make", "install"]
#RUN ["make", "dist"]
#

11
docker/nightly/Makefile Normal file
View file

@ -0,0 +1,11 @@
all :
cp version debian/version && cp version fedora/version && cp version ubuntu/version && cp version mint/version
make -C debian
make -C fedora
make -C ubuntu
make -C mint
clean :
sudo docker image prune --force

View file

@ -1,9 +1,13 @@
FROM debian FROM debian
MAINTAINER Bert van der Weerd <bert@stanzabird.nl> MAINTAINER Bert van der Weerd <bert@stanzabird.nl>
RUN apt-get -y update && apt-get -y upgrade RUN apt-get -y update && apt-get -y upgrade
# Install build dependencies..
run apt-get -y install wget python3 python3-dev mercurial
# Build mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run echo '***' python3 bootstrap.py --no-interactive --application-choice=browser
# Install build dependencies..
run apt-get -y install wget python3 python3-pip python3-dev mercurial
# Fetch mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run python3 bootstrap.py --no-interactive --application-choice=browser
# Build it..
copy version /

View file

@ -0,0 +1,17 @@
FROM fedora
MAINTAINER Bert van der Weerd <bert@stanzabird.nl>
RUN dnf -y update
# locale stuff, see: https://superuser.com/questions/959380/how-do-i-install-generate-all-locales-on-fedora
RUN echo "%_install_langs C:en:en_US:en_US.UTF-8" > /etc/rpm/macros.image-language-conf
RUN dnf -y reinstall glibc-common
# Install build dependencies..
run dnf -y install wget python3 python3-pip python3-devel mercurial
# Fetch mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run echo python3 bootstrap.py --no-interactive --application-choice=browser
# Build it..
copy version /

View file

@ -1,9 +1,14 @@
FROM linuxmintd/mint20.2-amd64 FROM linuxmintd/mint20.2-amd64
MAINTAINER Bert van der Weerd <bert@stanzabird.nl> MAINTAINER Bert van der Weerd <bert@stanzabird.nl>
RUN apt-get -y update && apt-get -y upgrade RUN apt-get -y update && apt-get -y upgrade
# Install build dependencies..
run apt-get -y install wget python3 python3-dev mercurial # Install build dependencies..
# Build mozilla nightly.. run apt-get -y install wget python3 python3-pip python3-dev mercurial
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run echo '***' python3 bootstrap.py --no-interactive --application-choice=browser # Fetch mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run python3 bootstrap.py --no-interactive --application-choice=browser
# Build it..
copy version /

View file

@ -1,9 +1,13 @@
FROM ubuntu FROM ubuntu
MAINTAINER Bert van der Weerd <bert@stanzabird.nl> MAINTAINER Bert van der Weerd <bert@stanzabird.nl>
RUN apt-get -y update && apt-get -y upgrade RUN apt-get -y update && apt-get -y upgrade
# Install build dependencies.. # Install build dependencies..
run apt-get -y install wget python3 python3-dev mercurial run apt-get -y install wget python3 python3-pip python3-dev mercurial
# Build mozilla nightly.. # Build mozilla nightly..
run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py run wget -q https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py
run echo '***' python3 bootstrap.py --no-interactive --application-choice=browser run python3 bootstrap.py --no-interactive --application-choice=browser
# Build it..
copy version /

1
docker/nightly/version Normal file
View file

@ -0,0 +1 @@
92.0.1