Forked from an inaccessible project.
-
Antonio Díaz authoredAntonio Díaz authored
lm32-tools:1.0 366 B
FROM centos:7.4.1708
LABEL maintainer="afdiaz@ugr.es"
RUN yum -y update && yum -y install epel-release
RUN yum -y install wget gzip cmake3 make git svn ; yum clean all;
ADD http://sftp.km3net.de/externals/lm32-toolchain.tar.gz /tmp
WORKDIR /opt
RUN tar xvzf /tmp/lm32-toolchain.tar.gz
RUN rm /tmp/lm32-toolchain.tar.gz
WORKDIR /root
ENV PATH "/opt/lm32/bin:$PATH"