Kieron Wilkinson

Results 20 comments of Kieron Wilkinson
trafficstars

I was considering doing a bit of refactoring of the Dockerfiles for similar reasons. What I'd actually like to do is turn things off to reduce the attack surface and...

I was mainly doing just a bit of refactoring of what is there to make it easier for me to create a minimal image downstream as I'd rather use other...

Okay, I've probably gone as far as I plan to go with my refactoring for now. While it doesn't really resolve this issue, the refactoring I've done does make it...

So are you thinking of something like: ```json { "apt": ["python3", "nodejs"], "script": ["aws-cli", "powershell"] } ``` And the build script would go off and construct the needed commands to...

FWIW, this was fairly easy to throw together. See [diff here](https://github.com/vyadh/docker-github-actions-runner/pull/1/files). This does user/group ids, apt installs and script-based installs from a `config.json` file. No GitHub VM runner-sourced installs yet...

Good idea. I'll add `description` another time (going to bed!). Obviously that won't change the implementation but I mean to the existing config and docs. The `command` idea sounds interesting....

Ah, I get it. I'll have a look at it. Perhaps it can be an iteration to what I've done already. First glance says there are are a fairly substantial...

I've had a better look at how the upstream toolset json works. I think it would be simple enough to grab the basic list of apt packages to install. Beyond...

Thanks for the clarifications. So in terms of the first increment, the PR I raised #393 gets us going in the right direction, if not the strategic format yet. Are...

I thought it would be interesting to see how far I could get trying to use the actual GitHub Runner VM install scripts to work in a container. It's a...