youngtsai commited on
Commit
84c314c
·
1 Parent(s): 3e2266d

COPY ./app.py /code/app.py

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -0
Dockerfile CHANGED
@@ -11,6 +11,7 @@ WORKDIR /code
11
  COPY --from=build /app/dist /code/dist
12
  COPY ./requirements.txt /code/requirements.txt
13
  COPY ./backend /code/backend
 
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]
 
11
  COPY --from=build /app/dist /code/dist
12
  COPY ./requirements.txt /code/requirements.txt
13
  COPY ./backend /code/backend
14
+ COPY ./app.py /code/app.py
15
  RUN pip install --no-cache-dir -r requirements.txt
16
 
17
  CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]