mirror of
https://github.com/esphome/esphome.git
synced 2024-11-04 09:01:53 +01:00
14 lines
265 B
Docker
14 lines
265 B
Docker
|
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
|