arindae commited on
Commit
0a87b78
·
1 Parent(s): be164df

corrected dockerfile again

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -1,7 +1,7 @@
1
  FROM python:3.11-slim
2
  WORKDIR /app
3
 
4
- COPY requirements.txt requirements-convert.txt ./
5
  RUN pip install --no-cache-dir -r requirements.txt \
6
  && pip install --no-cache-dir -r requirements-convert.txt --extra-index-url https://download.pytorch.org/whl/cpu
7
 
 
1
  FROM python:3.11-slim
2
  WORKDIR /app
3
 
4
+ COPY backend/requirements.txt backend/requirements-convert.txt ./
5
  RUN pip install --no-cache-dir -r requirements.txt \
6
  && pip install --no-cache-dir -r requirements-convert.txt --extra-index-url https://download.pytorch.org/whl/cpu
7