Browse Source
- Update Node.js installation to version 18.x - Add gosu package for better user switching - Remove s6 overlay installation - Modify entrypoint scripts to use gosu instead of s6-setuidgid - Add healthcheck script using gosu BREAKING CHANGE: This commit removes the s6 overlay installation from the Dockerfiles and modifies the entrypoint scripts to use gosu instead of s6-setuidgid. This may affect users who rely on the previous behavior.pull/15/head
5 changed files with 19 additions and 54 deletions
@ -1,2 +1,2 @@ |
|||
#!/usr/bin/with-contenv bas |
|||
exec s6-setuidgid ${USERNAME} /linuxgsm/*server monitor || exit 1 |
|||
#!/bin/bash |
|||
exec gosu ${USERNAME} /linuxgsm/*server monitor || exit 1 |
|||
|
Loading…
Reference in new issue