We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbd1754 commit 5de9642Copy full SHA for 5de9642
1 file changed
Dockerfile
@@ -8,13 +8,13 @@ ARG TARGETARCH
8
RUN apt-get clean && apt-get update && \
9
apt-get install -y wget
10
11
-ENV GO_RELEASE=1.23.4
+ENV GO_RELEASE=1.24.0
12
RUN wget https://dl.google.com/go/go${GO_RELEASE}.${TARGETOS}-${TARGETARCH}.tar.gz && \
13
tar xfv go${GO_RELEASE}.${TARGETOS}-${TARGETARCH}.tar.gz -C /usr/local && \
14
find /usr/local/go -mindepth 1 -maxdepth 1 ! -name 'src' ! -name 'VERSION' ! -name 'bin' ! -name 'pkg' ! -name 'go.env' -exec rm -rf {} +
15
16
17
-ENV TINYGO_RELEASE=0.35.0
+ENV TINYGO_RELEASE=0.36.0
18
RUN wget https://github.com/tinygo-org/tinygo/releases/download/v${TINYGO_RELEASE}/tinygo${TINYGO_RELEASE}.${TARGETOS}-${TARGETARCH}.tar.gz && \
19
tar xfv tinygo${TINYGO_RELEASE}.${TARGETOS}-${TARGETARCH}.tar.gz -C /usr/local
20
0 commit comments