1
0
mirror of https://github.com/esphome/esphome.git synced 2025-02-07 13:40:59 +00:00
esphome/docker/Dockerfile.dev
2020-07-15 01:37:30 +02:00

14 lines
265 B
Docker

FROM esphome/esphome-base-amd64:2.3.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