-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Speed up and slim down Dockerfile build.
- Loading branch information
1 parent
49dc3f7
commit c8d8658
Showing
1 changed file
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,15 +9,15 @@ MAINTAINER Colin Finck <[email protected]> | |
LABEL Description="Debian with CeGCC 9.3.0 (ENLYZE version for ARM and i386) and Git" | ||
|
||
RUN apt update; \ | ||
apt install -y bison build-essential flex git libgmp-dev libmpc-dev libmpfr-dev texinfo | ||
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends bison build-essential flex git libgmp-dev libmpc-dev libmpfr-dev texinfo | ||
|
||
RUN git clone --recursive https://github.com/enlyze/cegcc-build; \ | ||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build; \ | ||
cd cegcc-build; \ | ||
./build_cf.sh /opt/cegcc-arm arm-mingw32ce; \ | ||
cd ..; \ | ||
rm -rf cegcc-build | ||
|
||
RUN git clone --recursive https://github.com/enlyze/cegcc-build; \ | ||
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build; \ | ||
cd cegcc-build; \ | ||
./build_cf.sh /opt/cegcc-i386 i386-mingw32ce; \ | ||
cd ..; \ | ||
|