mirror of
https://github.com/aleleba/aleleba-vscode-dockerfile-configuration.git
synced 2025-06-20 21:08:12 -06:00
Adding dockerfile to repo. Updating the version to 1.0.0
This commit is contained in:
6
entrypoint.sh
Normal file
6
entrypoint.sh
Normal file
@ -0,0 +1,6 @@
|
||||
#!/bin/sh
|
||||
exec [[ -z "${HOME_USER}" ]] && adduser --disabled-password --gecos "" vscode \
|
||||
echo 'vscode ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers \
|
||||
|| adduser --disabled-password --gecos "" ${HOME_USER} \
|
||||
echo '${HOME_USER} ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers
|
||||
exec [[ -z "${VSCODE_TUNNEL_NAME}" ]] && code tunnel --accept-server-license-terms || code tunnel --accept-server-license-terms --name ${VSCODE_TUNNEL_NAME}
|
Reference in New Issue
Block a user