xke commited on
Commit
ce768bb
·
1 Parent(s): 8134724

update Dockerfile for HF

Browse files
Files changed (1) hide show
  1. Dockerfile +13 -9
Dockerfile CHANGED
@@ -1,11 +1,15 @@
 
 
 
1
  FROM python:3.11
2
- RUN useradd -m -u 1000 user
3
- USER user
4
- ENV HOME=/home/user \
5
- PATH=/home/user/.local/bin:$PATH
6
- WORKDIR $HOME/app
7
- COPY --chown=user . $HOME/app
8
- COPY ./requirements.txt ~/app/requirements.txt
9
- RUN pip install -r requirements.txt
10
  COPY . .
11
- CMD ["chainlit", "run", "app.py", "--port", "7860"]
 
 
1
+
2
+ # reference: https://huggingface.co/spaces/key2xanadu/hello-world-docker
3
+ #
4
  FROM python:3.11
5
+
6
+ WORKDIR /code
7
+
8
+ COPY ./requirements.txt /code/requirements.txt
9
+
10
+
11
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
12
+
13
  COPY . .
14
+
15
+ CMD ["chainlit", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]