yq/Dockerfile.dev

13 lines
246 B
Docker
Raw Normal View History

FROM golang:1.21.6
COPY scripts/devtools.sh /opt/devtools.sh
RUN set -e -x \
&& /opt/devtools.sh
2020-12-23 18:58:56 +00:00
ENV PATH=/go/bin:$PATH
RUN apt-get update && apt-get install -y npm && npm install -g npx cspell@latest
ENV CGO_ENABLED 0
2017-12-17 22:11:08 +00:00
ENV GOPATH /go:/yq