Skip to content

Commit

Permalink
Speed up and slim down Dockerfile build.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFinck committed Feb 26, 2024
1 parent 49dc3f7 commit c8d8658
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 ..; \
Expand Down

0 comments on commit c8d8658

Please sign in to comment.