Compare commits

..

2 Commits
1.0.0 ... 1.0.2

3 changed files with 3 additions and 3 deletions

View File

@ -33,4 +33,4 @@ RUN sudo sysctl -w fs.inotify.max_user_watches=524288
ADD ./entrypoint.sh /usr/bin/entrypoint.sh
RUN sudo chmod +x /usr/bin/entrypoint.sh
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
ENTRYPOINT ["bash", "/usr/bin/entrypoint.sh"]

View File

@ -1,4 +1,4 @@
#!/bin/sh
#!/bin/bash
exec [[ -z "${HOME_USER}" ]] && adduser --disabled-password --gecos "" vscode \
echo 'vscode ALL=(ALL) NOPASSWD: ALL' >> /etc/sudoers \
|| adduser --disabled-password --gecos "" ${HOME_USER} \

View File

@ -1 +1 @@
1.0.0
1.0.2