Skip to content

Commit e17a62c

Browse files
authored
Update Dockerfile.latest
1 parent 65d1873 commit e17a62c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile.latest

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

0 commit comments

Comments
 (0)