Chittrarasu commited on
Commit
c84fd87
·
1 Parent(s): 4591ce8
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,6 +3,6 @@ WORKDIR /app
3
  COPY requirements.txt .
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
6
- COPY app/ .
7
  EXPOSE 7860
8
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
 
3
  COPY requirements.txt .
4
  RUN pip install --no-cache-dir -r requirements.txt
5
  RUN mkdir -p /app/cache && chmod -R 777 /app/cache
6
+ COPY . .
7
  EXPOSE 7860
8
  CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]