Skip to content

Commit

Permalink
Check commands for errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinFinck committed Feb 26, 2024
1 parent 1b5c19e commit 1a097fd
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ FROM debian:12-slim
MAINTAINER Colin Finck <[email protected]>
LABEL Description="Debian with CeGCC 9.3.0 (ENLYZE version for ARM and i386) and Git"

RUN apt update; \
RUN apt update && \
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends bison build-essential ca-certificates flex git libgmp-dev libmpc-dev libmpfr-dev texinfo

RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build; \
cd cegcc-build; \
./build_cf.sh /opt/cegcc-arm arm-mingw32ce; \
cd ..; \
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 --depth 1 --recursive https://github.com/enlyze/cegcc-build; \
cd cegcc-build; \
./build_cf.sh /opt/cegcc-i386 i386-mingw32ce; \
cd ..; \
RUN git clone --depth 1 --recursive https://github.com/enlyze/cegcc-build && \
cd cegcc-build && \
./build_cf.sh /opt/cegcc-i386 i386-mingw32ce && \
cd .. && \
rm -rf cegcc-build

0 comments on commit 1a097fd

Please sign in to comment.