this repo has no description smallweb.run
smallweb
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix Dockerfile user creation to use correct UID and GID variables

pomdtr 49bfe09c 3dba6225

+1 -1
+1 -1
Dockerfile
··· 21 21 # Set up default user with ID 1000 22 22 ARG UID=1000 23 23 ARG GID=1000 24 - RUN groupadd -g $GID smallweb && useradd -m -s /bin/bash -u $GID -g $1000 smallweb 24 + RUN groupadd -g $GID smallweb && useradd -m -s /bin/bash -u $UID -g $GID smallweb 25 25 26 26 # Create app directory 27 27 RUN mkdir -p /smallweb && chown smallweb:smallweb /smallweb