feat: docker build

This commit is contained in:
Patrick Balsiger
2021-02-02 16:27:30 +01:00
parent 2fa6fadac6
commit 354564cf62
2 changed files with 7 additions and 0 deletions

3
Dockerfile Normal file
View File

@@ -0,0 +1,3 @@
FROM python:3.6-stretch as builder
RUN pip install -U platformio

4
Makefile Normal file
View File

@@ -0,0 +1,4 @@
build:
docker build -t wirelos/platformio .
run-workspace:
docker run -it --rm -v $PWD:/project wirelos/platformio bash