GUACAMOLE-1110: Replace user nobody with guacd
This commit is contained in:
parent
86176ff770
commit
7d06113cbe
@ -113,8 +113,12 @@ RUN ${PREFIX_DIR}/bin/link-freerdp-plugins.sh \
|
|||||||
# Checks the operating status every 5 minutes with a timeout of 5 seconds
|
# Checks the operating status every 5 minutes with a timeout of 5 seconds
|
||||||
HEALTHCHECK --interval=5m --timeout=5s CMD nc -z 127.0.0.1 4822 || exit 1
|
HEALTHCHECK --interval=5m --timeout=5s CMD nc -z 127.0.0.1 4822 || exit 1
|
||||||
|
|
||||||
# Run with user nobody
|
# Create a new user guacd
|
||||||
USER nobody
|
ARG UID=1000
|
||||||
|
RUN useradd --system --create-home --shell /usr/sbin/nologin --uid $UID --no-user-group guacd
|
||||||
|
|
||||||
|
# Run with user guacd
|
||||||
|
USER guacd
|
||||||
|
|
||||||
# Expose the default listener port
|
# Expose the default listener port
|
||||||
EXPOSE 4822
|
EXPOSE 4822
|
||||||
|
Loading…
Reference in New Issue
Block a user