Kyle Manna
Kyle Manna
Took a quick look and I don't see any problems on the image side. docker run --rm -it kylemanna/aosp echo "Hello World" docker_entrypoint: Creating user UID/GID [1000/1000] docker_entrypoint: Creating user...
Still an issue?
This change won't make any changes because it will execute *after* the build is run (and fails). Do you have any error messages or steps to re-produce?
This pull request is wayyy too big of a mess. Pull requests need to be clear and concise. Unfortunately this looks like it merges everything and then breaks it and...
Cherry-picking the exact fixes would be preferred like the way the linux mainline and linux-stable kernl operates.
True. I assume that people really using this will fork the build scripts to something more suitable for their own builds. I keep them around as a demonstration for those...
TCP front-ends and load-balancers are out of scope for this repo. There's nothing here preventing someone from building on top of this image to their heart's content.
Not sure what this is fixing, but the assumption is that the shell in use is POSIX compliant. This changes that and assumes it's `bash` or similar with double brackets...
One comment on this is that I have a number of backup scripts that assume everything under `~/.config` are things I care a lot about and want to keep. Often...
One-liner workaround that I'm using on my systems to move to the cache directory: ``` mkdir -pv ~/.cache/lnav/ && mv -v ~/.config/lnav/stdin-captures ~/.cache/lnav/ && ln -srv ~/.cache/lnav/stdin-captures ~/.config/lnav/ ```