Skip to content

Commit

Permalink
Merge pull request #12 from carapace-sh/update-1.23.0
Browse files Browse the repository at this point in the history
update to 1.23.0
  • Loading branch information
rsteube authored Sep 3, 2024
2 parents 146b32e + 880f21d commit 69ff4d7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
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
10 changes: 5 additions & 5 deletions Dockerfile
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

0 comments on commit 69ff4d7

Please sign in to comment.