1
0
mirror of https://github.com/sebastianbergmann/docker-amiga-gcc.git synced 2025-12-08 12:10:31 +00:00
Files
docker-amiga-gcc-vamos/Dockerfile
Sebastian Bergmann 774fb8bcc1 Bump
2019-02-17 09:41:08 +01:00

54 lines
948 B
Docker

FROM ubuntu:18.10
RUN apt-get update && apt-get install -y \
autoconf \
bison \
flex \
g++ \
gcc \
gettext \
git \
lhasa \
libgmpxx4ldbl \
libgmp-dev \
libmpfr6 \
libmpfr-dev \
libmpc3 \
libmpc-dev \
libncurses-dev \
make \
rsync \
texinfo\
wget \
&& rm -rf /var/lib/apt/lists/* && \
cd /root && \
git clone https://github.com/bebbo/amiga-gcc.git && \
cd /root/amiga-gcc && \
git checkout -qf 03b76477e229f01fbd954b4cbde8ab71af22c337 && \
mkdir -p /opt/amiga && \
make update && \
make all && \
cd / && \
rm -rf /root/amiga-gcc && \
apt-get purge -y \
autoconf \
bison \
flex \
g++ \
gcc \
gettext \
git \
lhasa \
libgmp-dev \
libmpfr-dev \
libmpc-dev \
libncurses-dev \
make \
rsync \
texinfo\
wget \
&& apt-get -y autoremove
ENV PATH /opt/amiga/bin:$PATH