diff --git a/base/lm32-tools:1.0 b/base/lm32-tools:1.0
new file mode 100644
index 0000000000000000000000000000000000000000..bd6fe2f8289382e57c333a8f0dca2875bc1bfde8
--- /dev/null
+++ b/base/lm32-tools:1.0
@@ -0,0 +1,13 @@
+FROM centos:latest as builder
+LABEL maintainer="afdiaz@ugr.es"
+RUN yum -y install wget gzip ; yum clean all;
+
+RUN wget https://drive.ugr.es/index.php/s/JuO1GmgQa5pAz0w/download -q -O lm32-toolchain.tar.gz && \
+    tar xvf lm32-toolchain.tar.gz
+
+FROM centos:latest
+RUN yum -y update && yum -y install epel-release
+RUN yum -y install wget gzip cmake3 make ; yum clean all;
+
+COPY --from=builder /lm32 /opt/lm32
+ENV PATH "/opt/lm32/bin:$PATH"