From c4161ef15f99aa7db2c9611c78006d8d1ab3b5dd Mon Sep 17 00:00:00 2001 From: Kannav02 Date: Thu, 28 Nov 2024 16:05:00 -0500 Subject: [PATCH] (fix) dockerfile path changed so it can be used Signed-off-by: Kannav02 --- frontend/Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index 3b4f1838..8a1b7c6c 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -2,18 +2,18 @@ FROM python:3.12.3-slim WORKDIR /ORAssistant-frontend -COPY ./requirements.txt /ORAssistant-frontend/requirements.txt -COPY ./requirements-test.txt /ORAssistant-frontend/requirements-test.txt -COPY ./pyproject.toml /ORAssistant-frontend/pyproject.toml +COPY frontend/requirements.txt /ORAssistant-frontend/requirements.txt +COPY frontend/requirements-test.txt /ORAssistant-frontend/requirements-test.txt +COPY frontend/pyproject.toml /ORAssistant-frontend/pyproject.toml RUN pip install --upgrade pip && \ pip install --no-cache-dir -r requirements.txt && \ pip install --no-cache-dir -r requirements-test.txt && \ pip install --no-cache-dir -e . -COPY streamlit_app.py . -COPY ./utils ./utils -COPY ./assets ./assets -COPY ../common ./common +COPY frontend/streamlit_app.py . +COPY frontend/utils ./utils +COPY frontend/assets ./assets +COPY common ./common CMD ["streamlit", "run", "streamlit_app.py"]