Skip to content

Commit b8406ab

Browse files
committed
chore: print mvn, gradle, java and ant versions in docker build
1 parent 79c7ea1 commit b8406ab

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ LABEL maintainer="[email protected]" \
2222
RUN apt-get update && apt-get install -y curl ca-certificates && \
2323
curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - && \
2424
apt-get install -y nodejs && \
25-
node -v && npm -v && \
2625
npm install -g yarn && \
27-
yarn -v && \
2826
apt-get clean && \
29-
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
27+
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
28+
node -v && npm -v && yarn -v && \
29+
mvn -v && gradle -v && java -version && ant -version

0 commit comments

Comments
 (0)