Neurolingua commited on
Commit
3a9ff3c
·
verified ·
1 Parent(s): dd480cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.9-slim
2
  RUN pip install --no-cache-dir --upgrade pip
3
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
4
 
5
  RUN apt-get update && apt-get install -y \
6
  libgl1-mesa-glx \
@@ -9,6 +9,6 @@ RUN apt-get update && apt-get install -y \
9
 
10
  WORKDIR /code
11
  COPY ./requirements.txt /code/requirements.txt
12
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
13
  COPY . /code
14
  CMD ["python", "app.py"]
 
1
  FROM python:3.9-slim
2
  RUN pip install --no-cache-dir --upgrade pip
3
+ RUN pip install --no-cache-dir --upgrade -r /code/requirement.txt
4
 
5
  RUN apt-get update && apt-get install -y \
6
  libgl1-mesa-glx \
 
9
 
10
  WORKDIR /code
11
  COPY ./requirements.txt /code/requirements.txt
12
+ RUN pip install --no-cache-dir --upgrade -r /code/requirement.txt
13
  COPY . /code
14
  CMD ["python", "app.py"]