fixed some bugs when doing `diff linux.Dockerfile macos.Dockerfile`

This commit is contained in:
Bert van der Weerd 2022-02-08 11:30:49 +01:00
parent 1fff775fce
commit 779b5e6db4
No known key found for this signature in database
GPG Key ID: 4CFABB96ADE0F5B1
1 changed files with 3 additions and 4 deletions

View File

@ -4,7 +4,6 @@ FROM debian:bullseye
ARG arch=error
# version of librewolf we use to bootstrap (does not need to be recent)
ARG version=error
ARG source_release=error
@ -53,9 +52,9 @@ RUN wget -q -O librewolf-$version-$source_release.source.tar.gz https://gitlab.c
cp -r clang /root/.mozbuild &&\
cp -r dmg /root/.mozbuild &&\
cp -r hfsplus-tools /root/.mozbuild &&\
cd / &&\
rm -rf librewolf-$version-$source_release librewolf-$version-$source_release.source.tar.g &&\
pip install testresources pycairo
pip install testresources pycairo &&\
cd .. &&\
rm -rf librewolf-$version-$source_release librewolf-$version-$source_release.source.tar.gz
# our work happens here, on the host filesystem.
WORKDIR /work