mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-30 01:38:27 +02:00
Switch to Python 3 for docker installs (#774)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
FROM esphome/esphome-base-amd64:1.8.3
|
||||
FROM esphome/esphome-base-amd64:2.0.0
|
||||
|
||||
RUN \
|
||||
apt-get update \
|
||||
@@ -12,7 +12,7 @@ RUN \
|
||||
/var/lib/apt/lists/*
|
||||
|
||||
COPY requirements_test.txt /requirements_test.txt
|
||||
RUN pip2 install --no-cache-dir wheel && pip2 install --no-cache-dir -r /requirements_test.txt
|
||||
RUN pip3 install --no-cache-dir wheel && pip3 install --no-cache-dir -r /requirements_test.txt
|
||||
|
||||
VOLUME ["/esphome"]
|
||||
WORKDIR /esphome
|
||||
|
||||
Reference in New Issue
Block a user