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 3c394c2 commit 0921923Copy full SHA for 0921923
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.24.4
+ENV GO_RELEASE=1.25.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.38.0
+ENV TINYGO_RELEASE=0.39.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