Benn
Benn
Have you looked at the `--directory` switch? I would be VERY interested in your Docker usage if this works for you and you're able to wrestle Docker and sdm into...
sdm needs to mount the directory somehow to operate on it. At the moment it does ``` mount --bind $dmimg $mpoint ``` Where $dmimg is (in this case) /out and...
I should add...sdm's structure requires that the IMG/device/directory be mounted to operate on it. How can it mount the directory in a docker container?
> The directory is already there it does not need to mount it anymore. > > As you can see in my docker container it downloads the image and just...
> Why do you mount dev pro and sys? Any specific use case or just because arch-chroot does it? Not sure what arch-chroot has to do with this? When I...
Looks like sdm doesn't need /dev, /dev/pts, /proc, and /sys. One small buglet found (df doesn't like it if /dev isn't there, but reports the correct results when requesting a...
@techtasie Thanks for the detailed writeup! Although I understand the reasons, it's quite disappointing that docker is so restrictive in the areas where sdm and apps with sdm-like requirements are...
BTW since you mentioned it...do you use either *-r/--requirement* or *-c/--constraint* in your venv requirements.txt files? sdm needs to copy all provided assets into the IMG during Phase 0 (when...
> I have never heard about the -c option tbh. I usually use -r And do your -r files refer to other -r files? Do you use more than one...
> I just the most basic version of requirements. > > Just one file with -r that just contains a bunch of package names with versions. Perfect. Thx!