Initial public release

This is the first public release of kas.

Signed-off-by: Daniel Wagner <daniel.wagner@siemens.com>
This commit is contained in:
Daniel Wagner
2017-06-14 13:36:37 +02:00
commit daf0abab5e
20 changed files with 1774 additions and 0 deletions

11
docker-entrypoint Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
USER_ID=${USERID:-30000}
# Create a non-root user that will perform the actual build
id build 2>/dev/null || \
useradd --uid $USER_ID --create-home --home-dir /build build
cd /build
exec gosu build "$@"