Created
August 19, 2015 17:36
-
-
Save TheCrazyT/cef7b8ee796845a76bf4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#docker build -t archtest . | |
#docker run -ti archtest | |
FROM base/arch | |
RUN pacman-key --populate archlinux | |
RUN pacman-key --refresh-keys | |
RUN pacman -Syu --noconfirm | |
RUN pacman-db-upgrade | |
RUN pacman -S --noconfirm elfutils | |
RUN pacman -S --noconfirm avr-libc | |
RUN pacman -S --noconfirm git | |
RUN pacman -S --noconfirm gcc | |
RUN pacman -S --noconfirm make | |
RUN pacman -S --noconfirm avr-gcc | |
RUN git clone https://github.com/buserror/simavr /simavr | |
CMD ["make","-C","/simavr"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment