-
-
Notifications
You must be signed in to change notification settings - Fork 243
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: build and run from Docker Support #241
base: main
Are you sure you want to change the base?
Conversation
Build and run the generator from docker image support added. The main aim and motivation behind doing this is, because of a no. of different generator are there, which are compatible and works with the different version of generator and also might be incompatible with other generator or versions of generator Signed-off-by: Pratik Raj <[email protected]>
echo 'yeoman:yeoman' |chpasswd && \ | ||
mkdir /home/yeoman/generator && \ | ||
export DEBIAN_FRONTEND=noninteractive && \ | ||
export TZ=Europe\Paris && \ |
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 the TZ should be Paris? Do we require to have TZ specifically defined ?
I believe that the user can always provide that as a env argument:
docker run -rm -e TZ=Europe/Madrid -it myimage
Co-authored-by: Ulises Gascón <[email protected]>
👋 Just following up @UlisesGascon, can we merge & release this? Are there any blockers? Seems like a non-breaking change to me? |
I will like to make some additional work, like update the base image, node version... and include an step in the CI to check that this is working. I will open a new PR probably with all the changes |
Build and run the generator from docker image support added.
The main aim and motivation behind doing this is, because
of a no. of different generator are there,
which are compatible and works with the different version of generator
and also might be incompatible with other generator or versions of generator
Signed-off-by: Pratik Raj [email protected]