-
Notifications
You must be signed in to change notification settings - Fork 82
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
Do not mimimize a docker image during conversion #222
Comments
Thanks for reporting this. Could you provide a minimal Dockerfile that reproduces this issue? |
Here is the Dockerfile that I use to produce my image
|
OK, an update. After clearing docker cache and rebuilding the wasm image and moving Although, It is not critical, but would be nice to have. Just for the reference, the Dockerfile I used in the latest test is
Thanks. |
Fixed in #225 |
Hello!
It is more of a feature request rather than an issue.
I am converting a custom image (built on top of ubuntu:22.04 docker image) using command c2w as follows:
This custom-image is built in such a way that man command works and even sudo command is available for the user (also created in Dockerfile for the custom-image).
But after conversion I get the following:
man
command, I getsudo -s
, I getBoth commands work fine if I just run this image in a docker container (via
docker run ...
).I can probably live without
sudo
, butman
is a necessity for my project.I assume the image is being modified during conversion. Is it possible avoid this conversion and tell c2w command to just use the image as is without any modifications. Or there is a reason for this that cannot be avoided?
Thank you very much in advance for your help.
The text was updated successfully, but these errors were encountered: