Skip to content

Instantly share code, notes, and snippets.

@meriororen
Last active July 19, 2018 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save meriororen/66efa5e8c686bc8fab0ca3083bb70b34 to your computer and use it in GitHub Desktop.
Save meriororen/66efa5e8c686bc8fab0ca3083bb70b34 to your computer and use it in GitHub Desktop.
Dockerfile for nrfbleprinter environment
FROM ubuntu
MAINTAINER Isa Ansharullah <isa.ansharullah@bukalapak.com>
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