Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update go version #15

Merged
merged 2 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading