chat-server / Dockerfile
cahya's picture
first commit
e3f06ac
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"]