mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 05:38:04 +00:00
31 lines
688 B
Docker
31 lines
688 B
Docker
FROM golang:1.13
|
|
|
|
COPY scripts/devtools.sh /opt/devtools.sh
|
|
|
|
RUN set -e -x \
|
|
&& /opt/devtools.sh
|
|
|
|
# install mkdocs
|
|
RUN set -ex \
|
|
&& buildDeps=' \
|
|
build-essential \
|
|
python-dev \
|
|
' \
|
|
&& apt-get update && apt-get install -y --no-install-recommends \
|
|
$buildDeps \
|
|
python2.7 \
|
|
python-setuptools \
|
|
python-wheel \
|
|
python-pip \
|
|
&& pip install --upgrade \
|
|
pip \
|
|
'Markdown>=2.6.9' \
|
|
'mkdocs>=0.16.3' \
|
|
'mkdocs-material>=1.10.1' \
|
|
'markdown-include>=0.5.1' \
|
|
&& apt-get purge -y --auto-remove $buildDeps \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
ENV CGO_ENABLED 0
|
|
ENV GOPATH /go:/yq
|