graphrag-accelerator/docker/Dockerfile-frontend
Josh Bradley 680cfc055e
Update frontend UI app (#174)
Co-authored-by: dorbaker <dorbaker@microsoft.com>
2024-09-19 01:09:26 -04:00

19 lines
428 B
Plaintext

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
FROM python:3.10
ENV PIP_ROOT_USER_ACTION=ignore
ENV PIP_DISABLE_PIP_VERSION_CHECK=1
ENV SETUPTOOLS_USE_DISTUTILS=stdlib
COPY frontend /frontend
RUN cd frontend \
&& pip install poetry \
&& poetry config virtualenvs.create false \
&& poetry install
WORKDIR /frontend
EXPOSE 8080
CMD ["streamlit", "run", "app.py", "--server.port", "8080"]