diff --git a/backend/ai_response_processor/Dockerfile b/backend/ai_response_processor/Dockerfile index a77f18c9..988daaa9 100644 --- a/backend/ai_response_processor/Dockerfile +++ b/backend/ai_response_processor/Dockerfile @@ -3,9 +3,8 @@ FROM python:3.11 WORKDIR /code COPY ./requirements.txt /code/requirements.txt +COPY . /code RUN pip install --no-cache-dir -r /code/requirements.txt -COPY ./app /code/app - CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"] \ No newline at end of file