Skip to content

Instantly share code, notes, and snippets.

@victorromeo
Created January 10, 2021 10:24
Show Gist options
  • Save victorromeo/144e639449662e640cf7853e63515c1e to your computer and use it in GitHub Desktop.
Save victorromeo/144e639449662e640cf7853e63515c1e to your computer and use it in GitHub Desktop.
Mbed CLI Dockerfile
from ubuntu
RUN apt-get update && apt-get install -y \
python3-pip \
gcc-arm-none-eabi \
git \
mercurial \
vim
RUN pip3 install --upgrade pip
RUN pip3 install mbed-cli 'colorama<0.4.0,>=0.3.9' pyserial prettytable jinja2 intelhex junit_xml pyyaml requests mbed_ls mbed_host_tests mbed_greentea beautifulsoup4 fuzzywuzzy pyelftools jsonschema future six manifest_tool mbed_cloud_sdk icetea
WORKDIR /home/dev
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment