We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74b635f commit 63c8852Copy full SHA for 63c8852
Dockerfile
@@ -5,7 +5,9 @@ RUN set -x \
5
&& apt-get update \
6
&& DEBIAN_FRONTEND=noninteractive apt-get install -y gosu xdg-user-dirs curl jq tzdata --no-install-recommends \
7
&& rm -rf /var/lib/apt/lists/* \
8
- && useradd -ms /bin/bash steam \
+ && userdel ubuntu \
9
+ && groupadd -r steam -g $PGID \
10
+ && useradd -ms /bin/bash --no-log-init -r -u $PUID -g $PGID steam \
11
&& gosu nobody true
12
13
RUN mkdir -p /config \
0 commit comments