YoBatM commited on
Commit
a5d2e6b
·
verified ·
1 Parent(s): ac5f701

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -0
Dockerfile CHANGED
@@ -16,3 +16,5 @@ RUN pip install --no-cache-dir --upgrade pip
16
  RUN apt-get install texlive-full poppler-utils
17
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
18
  COPY --chown=user . $HOME/app
 
 
 
16
  RUN apt-get install texlive-full poppler-utils
17
  # Copy the current directory contents into the container at $HOME/app setting the owner to the user
18
  COPY --chown=user . $HOME/app
19
+ EXPOSE 7080
20
+ CMD ["fastapi", "run", "app.py", "--port", "7080"]