Last active
July 19, 2018 03:32
-
-
Save meriororen/66efa5e8c686bc8fab0ca3083bb70b34 to your computer and use it in GitHub Desktop.
Dockerfile for nrfbleprinter environment
This file contains hidden or 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
FROM ubuntu | |
MAINTAINER Isa Ansharullah <[email protected]> | |
RUN apt-get update | |
RUN apt-get install -y python | |
RUN apt-get install -y software-properties-common | |
RUN add-apt-repository -y ppa:team-gcc-arm-embedded/ppa | |
RUN apt-get update | |
RUN apt-get install -y gcc-arm-embedded | |
RUN apt-get install -y make | |
#testing, please prepare nrfbleprinter project in the same directory | |
COPY nrfbleprinter . | |
RUN make -C nrfbleprinter/PSP/armgcc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment