Spaces:
No application file
No application file
Update docker
Browse files
docker
CHANGED
|
@@ -1,2 +1,18 @@
|
|
| 1 |
docker run -it -p 7860:7860 --platform=linux/amd64 \
|
| 2 |
-
registry.hf.space/washedashore-iykyk:latest python app.py
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
docker run -it -p 7860:7860 --platform=linux/amd64 \
|
| 2 |
+
registry.hf.space/washedashore-iykyk:latest python app.py
|
| 3 |
+
# Read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
| 4 |
+
# you will also find guides on how best to write your Dockerfile
|
| 5 |
+
|
| 6 |
+
FROM python:3.9
|
| 7 |
+
|
| 8 |
+
RUN useradd -m -u 1000 user
|
| 9 |
+
USER user
|
| 10 |
+
ENV PATH="/home/user/.local/bin:$PATH"
|
| 11 |
+
|
| 12 |
+
WORKDIR /app
|
| 13 |
+
|
| 14 |
+
COPY --chown=user ./requirements.txt requirements.txt
|
| 15 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 16 |
+
|
| 17 |
+
COPY --chown=user . /app
|
| 18 |
+
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
|