johnpaulbin commited on
Commit
0f2b76c
·
verified ·
1 Parent(s): 8301068

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -15,7 +15,7 @@ RUN git clone https://github.com/gregdan3/sona-toki.git
15
  WORKDIR sona-toki/src/
16
 
17
  RUN ls ../..
18
- RUN find ../.. -name app.py
19
- COPY --chown=user . /app
20
 
21
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
15
  WORKDIR sona-toki/src/
16
 
17
  RUN ls ../..
18
+ RUN find -name app.py
19
+ COPY --chown=user ../../app.py ./app
20
 
21
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]