We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40dbc55 commit 2a2851eCopy full SHA for 2a2851e
dogfood/coder/Dockerfile
@@ -12,13 +12,15 @@ FROM ubuntu:jammy@sha256:0e5e4a57c2499249aafc3b40fcd541e9a456aab7296681a3994d631
12
13
# Install Go manually, so that we can control the version
14
ARG GO_VERSION=1.24.4
15
+ARG GO_CHECKSUM="77e5da33bb72aeaef1ba4418b6fe511bc4d041873cbf82e5aa6318740df98717"
16
17
# Boring Go is needed to build FIPS-compliant binaries.
18
RUN apt-get update && \
19
apt-get install --yes curl && \
20
curl --silent --show-error --location \
21
"https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz" \
22
-o /usr/local/go.tar.gz && \
23
+ echo "$GO_CHECKSUM /usr/local/go.tar.gz" | sha256sum -c && \
24
rm -rf /var/lib/apt/lists/*
25
26
ENV PATH=$PATH:/usr/local/go/bin
0 commit comments