yq/Dockerfile.dev
dependabot[bot] 12483f4df0
Bump golang from 1.25.6 to 1.26rc3
Bumps golang from 1.25.6 to 1.26rc3.

---
updated-dependencies:
- dependency-name: golang
  dependency-version: 1.26rc3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-02-05 03:52:26 +00:00

16 lines
260 B
Docker

FROM golang:1.26rc3
RUN apt-get update && \
apt-get install -y npm && \
npm install -g npx cspell@latest
COPY scripts/devtools.sh /opt/devtools.sh
RUN set -e -x && \
/opt/devtools.sh
ENV PATH=/go/bin:$PATH
ENV CGO_ENABLED 0
ENV GOPATH /go:/yq