minus-squarereflectedodds@lemmy.worldtoLinux@lemmy.world•[HELP NEEDED] Unable to figure out directory permissionslinkfedilinkEnglisharrow-up4·1 year agoTry adding USER root before the mkdir. Also, just in general, when debugging container files, I comment out the failing line and set my command to tail -F /dev/null, then you can build and run the container and exec <container> bash and try to manually run the commands that are failing. linkfedilink
minus-squarereflectedodds@lemmy.worldtoLinux@lemmy.ml•What would an ENSH*TTIFIED Linux distro look like? [video]linkfedilinkarrow-up6arrow-down2·1 year agoJust switch to GNU/Hurd /s linkfedilink
minus-squarereflectedodds@lemmy.worldtoLinux@lemmy.ml•Snap store from Canonical (Ubuntu) hit with another crypto scam applinkfedilinkarrow-up8arrow-down1·1 year agoThe more I learn about web3/crypto, it is increasingly getting closer to real life financials with all the same pitfalls and extra crypto problems linkfedilink
Try adding
USER root
before the mkdir.Also, just in general, when debugging container files, I comment out the failing line and set my command to
tail -F /dev/null
, then you can build and run the container andexec <container> bash
and try to manually run the commands that are failing.