1
0
Fork 0
mirror of https://github.com/hermitcore/libhermit.git synced 2025-03-30 00:00:15 +01:00

add required build tools to the docker image

This commit is contained in:
Stefan Lankes 2017-06-26 00:36:53 +02:00
parent 6a865b679f
commit d80fbf74ef

View file

@ -14,7 +14,7 @@ RUN echo "deb https://dl.bintray.com/rwth-os/hermitcore vivid main" | tee -a /et
RUN apt-get -qq update
# Install required packets from ubuntu repository
RUN apt-get install -y curl wget vim nano git binutils
RUN apt-get install -y curl wget vim nano git binutils autoconf automake make cmake qemu-system-x86 nasm gcc
RUN apt-get install -y --allow-unauthenticated binutils-hermit libhermit newlib-hermit pthread-embedded-hermit gcc-hermit
ENV PATH="/opt/hermit/bin:${PATH}"