mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
66c8390d54
Resolves: #35
29 lines
638 B
Docker
29 lines
638 B
Docker
FROM golang:1.7
|
|
|
|
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-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:/yaml
|