Skip to content

Commit d113b8f

Browse files
authored
Update Dockerfile.2023.11.3
1 parent e17a62c commit d113b8f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile.2023.11.3

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,11 @@ RUN echo $PATH
1919
ENV ANDROID_SDK_ROOT=/root/Android/Sdk
2020
ENV PATH=$PATH:$ANDROID_SDK_ROOT/cmdline-tools/latest/bin
2121
ENV PATH=$PATH:$ANDROID_SDK_ROOT/platform-tools
22-
ENV PATH=$PATH:$(go env GOPATH)/bin
22+
#
23+
ARG ActualGoPath
24+
RUN ActualGoPath=$(go env GOPATH) && echo "GOPATH è $ActualGoPath"
25+
ENV PATH=$PATH:$ActualGoPath/bin
26+
#
2327
RUN cat ~/.bashrc
2428
RUN . /root/.bashrc
2529
RUN echo $PATH

0 commit comments

Comments
 (0)