-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat: Dockerfiles for e2e tests next iteration #1757
base: trunk
Are you sure you want to change the base?
Conversation
This PR is related to #1444 |
@@ -0,0 +1,31 @@ | |||
FROM dart:3.6.0 |
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.
Should be 3.7.0 and pinned to a hash
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.
Where can I find instructions on how to do that again?
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.
Never mind , figured it out :)
…a README in progress
…1, and ssh keys to dockerfile runtimes
mkdir -p ${HOMEDIR}/.ssh ${HOMEDIR}/.atsign/keys ; \ | ||
chown -R ${USER}:${USER} ${HOMEDIR} ; \ | ||
touch ${HOMEDIR}/.ssh/authorized_keys ; \ | ||
ex +"%s/^%sudo.*$/%sudo ALL=(ALL:ALL) NOPASSWD:ALL/g" -scwq! /etc/sudoers ; \ |
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.
why a vim ex command instead of sed?
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.
This should be the same as sed -e 's/^%sudo.*$/%sudo ALL=(ALL:ALL) NOPASSWD:ALL/g' -i /etc/sudoers
and you don't need to install vim & the vim runtime (which is heavier than just vi)
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.
Done in 64fcfee
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.
See my comment
- What I did
The 4 Dockerfiles are:
c.*.*.*
releasev.*.*.*
release- How I did it
- How to verify it
- Description for the changelog
feat: Dockerfiles for e2e tests next iteration