Skip to content

Commit

Permalink
Merge pull request #15 from bhaney/main
Browse files Browse the repository at this point in the history
update go version
  • Loading branch information
bhaney authored Sep 5, 2024
2 parents 1c90b5c + 2b3ae1d commit 290a2ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
8 changes: 4 additions & 4 deletions etc/Dockerfile.debian.bookworm
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,11 @@ RUN mkdir -p /root/opt/src
# install Go

RUN if [ "$BASE_TAG" = "amd64" ]; then \
wget https://go.dev/dl/go1.21.9.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.21.9.linux-amd64.tar.gz; \
wget https://go.dev/dl/go1.21.13.linux-amd64.tar.gz && \
tar -C /usr/local -xzf go1.21.13.linux-amd64.tar.gz; \
elif [ "$BASE_TAG" = "arm64" ]; then \
wget https://go.dev/dl/go1.21.9.linux-arm64.tar.gz && \
tar -C /usr/local -xzf go1.21.9.linux-arm64.tar.gz; \
wget https://go.dev/dl/go1.21.13.linux-arm64.tar.gz && \
tar -C /usr/local -xzf go1.21.13.linux-arm64.tar.gz; \
else \
echo "Unsupported architecture $BASE_TAG"; \
exit 1; \
Expand Down
4 changes: 1 addition & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
module github.com/viamrobotics/ocean-prefilter

go 1.21.7

toolchain go1.21.12
go 1.21.13

require (
github.com/Elvenson/xgboost-go v0.1.4
Expand Down

0 comments on commit 290a2ef

Please sign in to comment.