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