diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..779e9da --- /dev/null +++ b/Dockerfile @@ -0,0 +1,3 @@ +FROM python:3.6-stretch as builder + +RUN pip install -U platformio diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b6fa87a --- /dev/null +++ b/Makefile @@ -0,0 +1,4 @@ +build: + docker build -t wirelos/platformio . +run-workspace: + docker run -it --rm -v $PWD:/project wirelos/platformio bash