mirror of
https://github.com/mikefarah/yq.git
synced 2026-08-24 00:04:50 +08:00
51b09b9804
Bumps golang from 1.26.4 to 1.26.5. --- updated-dependencies: - dependency-name: golang dependency-version: 1.26.5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
12 lines
237 B
Docker
12 lines
237 B
Docker
FROM golang:1.26.5@sha256:079e59808d2d252516e27e3f3a9c003740dee7f75e55aa71528766d52bcfc16a
|
|
|
|
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
|