Update Dockerfile
Browse files- 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"]
|