mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
d4d87288a1
`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
6 lines
71 B
Bash
Executable File
6 lines
71 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
su user -p -c /usr/share/code/code
|