Skip to content

Commit

Permalink
fix: Python version check
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikita P committed Dec 10, 2024
1 parent 20644ad commit f350f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ RUN echo "cd /root/scripts" >> /root/.bashrc


# verify prerequisites versions
RUN python --version | grep 'Python 3.10.15' || (echo "Incorrect python version" && exit 1)
RUN python --version | grep 'Python 3.10.' || (echo "Incorrect python version" && exit 1)
RUN pip --version | grep 'pip 24.' || (echo "Incorrect pip version" && exit 1)
RUN node --version | grep 'v18.' || (echo "Incorrect node version" && exit 1)
RUN npm --version | grep '10.' || (echo "Incorrect npm version" && exit 1)
Expand Down

0 comments on commit f350f32

Please sign in to comment.