Skip to content

Commit

Permalink
initial docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanwinter committed Sep 7, 2020
1 parent a3aba46 commit 6aea9a0
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
ARG VARIANT=focal
FROM mcr.microsoft.com/vscode/devcontainers/base:debian

WORKDIR /work

RUN apt-get update \
&& apt-get install -y libncurses5 git wget bzip2 cmake ninja-build

# pull the gcc-arm-none-eabi tarball
RUN wget -qO- https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2019q4/gcc-arm-none-eabi-9-2019-q4-major-x86_64-linux.tar.bz2 | tar -xj

ENV PATH $PATH:/work/gcc-arm-none-eabi-9-2019-q4-major/bin

0 comments on commit 6aea9a0

Please sign in to comment.