File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,6 @@ RUN curl -fsSLO https://dot.net/v1/dotnet-install.sh \
9292
9393ENV GOLANG_VERSION="1.22"
9494RUN apt -y update && apt -y upgrade && apt -y install \
95- python-is-python3 \
9695 ca-certificates && \
9796 apt -y install -t unstable \
9897 python3.12\
@@ -101,7 +100,8 @@ RUN apt -y update && apt -y upgrade && apt -y install \
101100 openjdk-21-jdk && \
102101 apt -y clean && rm -rf /var/lib/apt/lists/* && \
103102 # Symlink go binary to bin directory which is in path
104- ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go
103+ ln -s /usr/lib/go-$GOLANG_VERSION/bin/go /usr/bin/go && \
104+ ln -s /usr/bin/python3.12 /usr/bin/python
105105
106106RUN dotnet --version
107107
@@ -120,7 +120,7 @@ RUN apt -y update && apt -y install \
120120
121121RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer
122122
123- RUN php -v && composer --version
123+ RUN ln -sf /usr/bin/python3.12 /usr/bin/python3 && php -v && composer --version && python3 --version
124124
125125CMD [ "debricked" , "scan" ]
126126
You can’t perform that action at this time.
0 commit comments