Upgrade yq_dev container to golang:1.14 base container and deb packages to python3

This commit is contained in:
apenav 2020-04-14 16:48:53 +02:00 committed by Mike Farah
parent 2db69c91c9
commit 55511de9af

View File

@ -1,4 +1,4 @@
FROM golang:1.13
FROM golang:1.14
COPY scripts/devtools.sh /opt/devtools.sh
@ -9,15 +9,15 @@ RUN set -e -x \
RUN set -ex \
&& buildDeps=' \
build-essential \
python-dev \
python3-dev \
' \
&& apt-get update && apt-get install -y --no-install-recommends \
$buildDeps \
python2.7 \
python-setuptools \
python-wheel \
python-pip \
&& pip install --upgrade \
python3 \
python3-setuptools \
python3-wheel \
python3-pip \
&& pip3 install --upgrade \
pip \
'Markdown>=2.6.9' \
'mkdocs>=0.16.3' \