-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from carapace-sh/update-1.23.0
update to 1.23.0
- Loading branch information
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "go-src"] | ||
path = go-src | ||
url = https://github.com/golang/go | ||
branch = release-branch.go1.22.2 | ||
branch = release-branch.go1.23.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
FROM golang:1.22.1 as build | ||
FROM golang:1.23.0 AS build | ||
COPY . /go-src | ||
RUN cd /go-src && make build | ||
|
||
FROM golang:1.22.1 as build-termux | ||
FROM golang:1.23.0 AS build-termux | ||
COPY . /go-src | ||
RUN cd /go-src && make build-termux | ||
|
||
FROM golang:1.22.1 | ||
FROM golang:1.23.0 | ||
COPY --from=build /usr/local/go/ /usr/local/go | ||
COPY --from=build-termux /usr/local/go/ /usr/local/go-termux/ | ||
|
||
RUN apt-get update && apt-get install -y sdkmanager | ||
ENV NDK_VERSION r26d | ||
ENV ANDROID_VERSION 34 | ||
ENV NDK_VERSION=r26d | ||
ENV ANDROID_VERSION=34 | ||
RUN sdkmanager --install "ndk;${NDK_VERSION}" | ||
COPY go-termux.sh /usr/local/bin/go-termux |