mlabonne commited on
Commit
403650d
1 Parent(s): b425909

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +0 -6
Dockerfile CHANGED
@@ -2,16 +2,10 @@ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
5
- RUN ls
6
-
7
  COPY ./requirements.txt /code/requirements.txt
8
  COPY ./app.py /code/app.py
9
  COPY ./yall.py /code/yall.py
10
 
11
- RUN ls
12
-
13
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
14
 
15
- RUN ls
16
-
17
  CMD ["streamlit", "run", "/code/app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]
 
2
 
3
  WORKDIR /code
4
 
 
 
5
  COPY ./requirements.txt /code/requirements.txt
6
  COPY ./app.py /code/app.py
7
  COPY ./yall.py /code/yall.py
8
 
 
 
9
  RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
10
 
 
 
11
  CMD ["streamlit", "run", "/code/app.py", "--server.address", "0.0.0.0", "--server.port", "7860"]