camparchimedes commited on
Commit
d4f8169
ยท
verified ยท
1 Parent(s): eda7e58

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -5
Dockerfile CHANGED
@@ -3,16 +3,12 @@
3
 
4
 
5
  FROM python:3.10
6
- #RUN useradd -m -u 1000 user
7
- #USER user
8
- #ENV PATH="/home/user/.local/bin:$PATH"
9
  WORKDIR /
10
  COPY requirements.txt .
11
- #COPY --chown=user ./requirements.txt requirements.txt
12
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
13
  COPY . .
14
- #COPY --chown=user . /app
15
  CMD ["chainlit", "run", "app.py", "-h", "0.0.0.0", "-p", "7860"]
16
 
17
 
18
 
 
 
3
 
4
 
5
  FROM python:3.10
 
 
 
6
  WORKDIR /
7
  COPY requirements.txt .
 
8
  RUN pip install --no-cache-dir --upgrade -r requirements.txt
9
  COPY . .
 
10
  CMD ["chainlit", "run", "app.py", "-h", "0.0.0.0", "-p", "7860"]
11
 
12
 
13
 
14
+