Fix jess/vscode hanging as running indefinetely (#305)

`sleep infinity` was keeping the process as running until being forced to stop with `docker container stop`

`/usr/bin/editor` is just a script that calls the editor (at another shell), using the right path (`/usr/share/code/code`) directly to call it fix this issue
This commit is contained in:
Marco Antonio Martins Junior 2017-11-01 17:08:54 +00:00 committed by Jess Frazelle
parent 16ba4698d8
commit d4d87288a1

View File

@ -2,5 +2,4 @@
set -e set -e
set -o pipefail set -o pipefail
su user -c /usr/bin/editor su user -p -c /usr/share/code/code
sleep infinity