Spaces:
Sleeping
Sleeping
Commit ·
e2ff94c
1
Parent(s): 8641e86
Update Dockerfile for HF Spaces with user permissions and add .dockerignore
Browse files- .dockerignore +11 -0
- Dockerfile +10 -10
.dockerignore
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
.git
|
| 2 |
+
.venv
|
| 3 |
+
__pycache__
|
| 4 |
+
*.pyc
|
| 5 |
+
*.pyo
|
| 6 |
+
*.pyd
|
| 7 |
+
.pytest_cache
|
| 8 |
+
.coverage
|
| 9 |
+
.env
|
| 10 |
+
start.sh
|
| 11 |
+
render.yaml
|
Dockerfile
CHANGED
|
@@ -1,16 +1,16 @@
|
|
| 1 |
-
|
|
|
|
| 2 |
|
| 3 |
-
|
| 4 |
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
|
| 9 |
-
|
| 10 |
-
COPY . .
|
| 11 |
|
| 12 |
-
|
| 13 |
-
|
| 14 |
|
| 15 |
-
|
| 16 |
CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]
|
|
|
|
| 1 |
+
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
| 2 |
+
# you will also find guides on how best to write your Dockerfile
|
| 3 |
|
| 4 |
+
FROM python:3.11
|
| 5 |
|
| 6 |
+
RUN useradd -m -u 1000 user
|
| 7 |
+
USER user
|
| 8 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
|
| 10 |
+
WORKDIR /app
|
|
|
|
| 11 |
|
| 12 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
| 13 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 14 |
|
| 15 |
+
COPY --chown=user . /app
|
| 16 |
CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]
|