Skip to content

Commit

Permalink
(fix) dockerfile path changed so it can be used
Browse files Browse the repository at this point in the history
Signed-off-by: Kannav02 <[email protected]>
  • Loading branch information
Kannav02 committed Jan 16, 2025
1 parent c2b655c commit 25a6ebc
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions frontend/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

0 comments on commit 25a6ebc

Please sign in to comment.