mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
14 lines
265 B
Docker
14 lines
265 B
Docker
FROM esphome/esphome-base-amd64:3.4.0
|
|
|
|
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
|