various fixes

This commit is contained in:
Bert van der Weerd 2022-02-05 11:26:45 +01:00
parent f73788209f
commit 1a9c384a7e
No known key found for this signature in database
GPG Key ID: 4CFABB96ADE0F5B1
2 changed files with 14 additions and 4 deletions

View File

@ -47,11 +47,15 @@ $(tarball) :
docker : docker-debian11 docker-mint20 docker-ubuntu20 docker-ubuntu21 docker-fedora34 docker-fedora35
build : debian11 mint20 ubuntu20 ubuntu21 fedora34 fedora35
build : clean debian11 clean mint20 clean ubuntu20 clean ubuntu21 clean fedora34 clean fedora35 clean
push :
docker push librewolf/bsys5-image-debian11 librewolf/bsys5-image-mint20 librewolf/bsys5-image-ubuntu20 librewolf/bsys5-image-ubuntu21 librewolf/bsys5-image-fedora34 librewolf/bsys5-image-fedora35
docker push librewolf/bsys5-image-debian11
docker push librewolf/bsys5-image-mint20
docker push librewolf/bsys5-image-ubuntu20
docker push librewolf/bsys5-image-ubuntu21
docker push librewolf/bsys5-image-fedora34
docker push librewolf/bsys5-image-fedora35
work : $(tarball)
mkdir work

View File

@ -3,10 +3,16 @@ FROM $distro
ENV version 96.0.3
ENV source_release 3
# we use this wasi version..
# we use this wasi version
ENV wasi_fullversion 14.0
ENV wasi_mainversion 14
# these ones seem to be needed by ubuntu
ENV DEBIAN_FRONTEND=noninteractive
ENV TZ=Europe/Amsterdam
# dependencies needed to run ./mach bootstrap
RUN ( apt-get -y update && apt-get -y upgrade && apt-get -y install mercurial python3 python3-dev python3-pip wget ; true)
RUN ( dnf -y upgrade && dnf -y install mercurial python3 python3-devel wget ; true)