Update docker dev environment to python3.6 (#7520)
* Update docker dev environment to python3.6 * comment out disable switches again
This commit is contained in:
committed by
Paulus Schoutsen
parent
1eaec8f406
commit
43296069c3
@@ -2,7 +2,7 @@
|
||||
# Based on the production Dockerfile, but with development additions.
|
||||
# Keep this file as close as possible to the production Dockerfile, so the environments match.
|
||||
|
||||
FROM python:3.5
|
||||
FROM python:3.6
|
||||
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
|
||||
|
||||
# Uncomment any of the following lines to disable the installation.
|
||||
@@ -37,11 +37,11 @@ RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - && \
|
||||
RUN pip3 install --no-cache-dir tox
|
||||
|
||||
# Copy over everything required to run tox
|
||||
COPY requirements_test.txt setup.cfg setup.py tox.ini ./
|
||||
COPY requirements_test_all.txt setup.cfg setup.py tox.ini ./
|
||||
COPY homeassistant/const.py homeassistant/const.py
|
||||
|
||||
# Prefetch dependencies for tox
|
||||
RUN tox -e py35 --notest
|
||||
RUN tox -e py36 --notest
|
||||
|
||||
# END: Development additions
|
||||
|
||||
|
||||
Reference in New Issue
Block a user