Skip to content

Instantly share code, notes, and snippets.

@TheCrazyT
Created August 19, 2015 17:36
Show Gist options
  • Save TheCrazyT/cef7b8ee796845a76bf4 to your computer and use it in GitHub Desktop.
Save TheCrazyT/cef7b8ee796845a76bf4 to your computer and use it in GitHub Desktop.
#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