From 354564cf62e94793551fd2a2be0eb938773bc70b Mon Sep 17 00:00:00 2001 From: Patrick Balsiger Date: Tue, 2 Feb 2021 16:27:30 +0100 Subject: [PATCH] feat: docker build --- Dockerfile | 3 +++ Makefile | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 Dockerfile create mode 100644 Makefile 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