Spaces:
Runtime error
Runtime error
File size: 160 Bytes
e3f06ac | 1 2 3 4 5 6 7 | 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"] |