Skip to content

Commit

Permalink
chore: Print out used node, npm & tsc versions in client Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
msarcev committed Nov 24, 2023
1 parent 1eee426 commit 20549a4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions client/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ RUN echo 'server {\
}' > /etc/nginx/http.d/default.conf

# Running required steps to prepare the web app prod build
RUN echo Node $(node -v)
RUN echo Npm $(npm -v)
RUN npm install
RUN echo Tsc $(tsc -v)
RUN npm run build

EXPOSE 80
Expand Down

0 comments on commit 20549a4

Please sign in to comment.