Skip to content

Commit

Permalink
fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
rsteube committed Sep 3, 2024
1 parent a27efd9 commit 880f21d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM golang:1.23.0 as build
FROM golang:1.23.0 AS build
COPY . /go-src
RUN cd /go-src && make build

FROM golang:1.23.0 as build-termux
FROM golang:1.23.0 AS build-termux
COPY . /go-src
RUN cd /go-src && make build-termux

Expand All @@ -11,7 +11,7 @@ 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 880f21d

Please sign in to comment.