File tree 2 files changed +5
-7
lines changed
2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ RUN mkdir -p /root/opt/src
43
43
# install Go
44
44
45
45
RUN if [ "$BASE_TAG" = "amd64" ]; then \
46
- wget https://go.dev/dl/go1.21.9 .linux-amd64.tar.gz && \
47
- tar -C /usr/local -xzf go1.21.9 .linux-amd64.tar.gz; \
46
+ wget https://go.dev/dl/go1.21.13 .linux-amd64.tar.gz && \
47
+ tar -C /usr/local -xzf go1.21.13 .linux-amd64.tar.gz; \
48
48
elif [ "$BASE_TAG" = "arm64" ]; then \
49
- wget https://go.dev/dl/go1.21.9 .linux-arm64.tar.gz && \
50
- tar -C /usr/local -xzf go1.21.9 .linux-arm64.tar.gz; \
49
+ wget https://go.dev/dl/go1.21.13 .linux-arm64.tar.gz && \
50
+ tar -C /usr/local -xzf go1.21.13 .linux-arm64.tar.gz; \
51
51
else \
52
52
echo "Unsupported architecture $BASE_TAG"; \
53
53
exit 1; \
Original file line number Diff line number Diff line change 1
1
module github.com/viamrobotics/ocean-prefilter
2
2
3
- go 1.21.7
4
-
5
- toolchain go1.21.12
3
+ go 1.21.13
6
4
7
5
require (
8
6
github.com/Elvenson/xgboost-go v0.1.4
You can’t perform that action at this time.
0 commit comments