blasisd commited on
Commit
d5d63ba
·
1 Parent(s): c2ae33f

Updated README.md and Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM python:3.10.12-alpine
3
 
4
  # The two following lines are requirements for the Dev Mode to be functional
5
  # Learn more about the Dev Mode at https://huggingface.co/dev-mode-explorers
6
- RUN useradd -m -u 1000 user
7
  WORKDIR /app
8
 
9
  COPY --chown=user ./requirements.txt requirements.txt
 
3
 
4
  # The two following lines are requirements for the Dev Mode to be functional
5
  # Learn more about the Dev Mode at https://huggingface.co/dev-mode-explorers
6
+ RUN addgroup -S appgroup && adduser -S user -u 1000 -G appgroup
7
  WORKDIR /app
8
 
9
  COPY --chown=user ./requirements.txt requirements.txt