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