summaryrefslogtreecommitdiff
path: root/docker/entrypoint.sh
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2019-01-26 10:08:22 +0100
committerChristian Poessinger <christian@poessinger.com>2019-01-26 10:08:22 +0100
commit1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64 (patch)
tree66ef9943181e65f8b328deb72b5372d24601c347 /docker/entrypoint.sh
parente81343f0838a84be80846d0b2288d3f114a57338 (diff)
parentfdf47c42269f7adb7d5f3e60b8180e8b9bc77503 (diff)
downloadvyos-build-1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64.tar.gz
vyos-build-1daf1a0fc16033cd4c9e6f8bf1dfd3a90d369a64.zip
Merge branch 'current' of github.com:c-po/vyos-build into current
* 'current' of github.com:c-po/vyos-build: Jenkins: cleanup Docker: Make OPAM system wide available When building linux-kernel use number of host CPUs on parallel build When building parse Git commit ID When building frr clean out Git repository first Fix --verbose option when building submodules Build submodules in parallel with number of host CPUs submodules: add igmpproxy submodules: add vyos-xe-guest-utilities
Diffstat (limited to 'docker/entrypoint.sh')
-rwxr-xr-xdocker/entrypoint.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/entrypoint.sh b/docker/entrypoint.sh
index 8db41103..ed6ca7d9 100755
--- a/docker/entrypoint.sh
+++ b/docker/entrypoint.sh
@@ -23,6 +23,10 @@ if ! grep -q $NEW_GID /etc/group; then
groupadd --gid $NEW_GID $USER_NAME
fi
+# libvyosconfig depends on OCaml/OPAM so we make sure
+# we can use it
+echo "eval \$(opam env --root=/opt/opam --set-root)" >> /etc/skel/.bashrc
+
useradd --shell /bin/bash --uid $NEW_UID --gid $NEW_GID --non-unique --create-home $USER_NAME
usermod --append --groups sudo $USER_NAME
sudo chown $NEW_UID:$NEW_GID /home/$USER_NAME