-
Notifications
You must be signed in to change notification settings - Fork 44
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update python tests job #88
Update python tests job #88
Conversation
8f843b9
to
280a5ec
Compare
280a5ec
to
2089633
Compare
b19ede0
to
30a38ce
Compare
30a38ce
to
9f1bb2a
Compare
6a80d34
to
f4a710e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Signed-off-by: Anish Asthana <[email protected]>
f4a710e
to
0742d19
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I have one minor comment.
RUN dnf install nodejs -y && \ | ||
dnf clean all && \ | ||
rm -rf /var/cache/dnf | ||
ADD https://mirror.openshift.com/pub/openshift-v4/clients/oc/latest/linux/oc.tar.gz $TMPDIR/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think that if we use ADD here, the Docker will create a separate image layer with tar file. And even if we delete it in the next command it will stay in the image. It will be only hidden by next layer. I would suggest to download tar with oc as part of the RUN command on next line.
@KPostOffice and I connected -- I will spend some time updating this PR to have the repo be fully based on poetry (no requirements.txt) |
Replaced by #305 |
No description provided.