1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-02 03:12:20 +01:00

VSCode devcontainer support (#914)

* Devcontainer

* Removed header from json
This commit is contained in:
Nikolay Vasilchuk
2020-04-05 21:50:52 +03:00
committed by GitHub
parent 79248e8b74
commit 3b7a47fb90
2 changed files with 44 additions and 0 deletions

13
docker/Dockerfile.dev Normal file
View File

@@ -0,0 +1,13 @@
FROM esphome/esphome-base-amd64:2.0.1
COPY . .
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
python3-wheel \
net-tools \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspaces
ENV SHELL /bin/bash