Spaces:
Sleeping
Sleeping
Updated README.md and Dockerfile
Browse files- 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
|
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
|