FROM python:3.8-slim-buster COPY . /app WORKDIR /app RUN pip install -r requirements.txt EXPOSE 8502 ENTRYPOINT ["python","app/chat_server.py"] # CMD ["app.py"]