Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docker/llama-swap.Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ ARG USER_HOME=/app
ENV HOME=$USER_HOME
RUN if [ $UID -ne 0 ]; then \
if [ $GID -ne 0 ]; then \
addgroup --system --gid $GID app; \
groupadd --system --gid $GID app; \
fi; \
adduser --system --no-create-home --uid $UID --gid $GID \
useradd --system --uid $UID --gid $GID \
--home $USER_HOME app; \
fi

Expand Down