chat-server / Dockerfile
cahya's picture
first commit
e3f06ac
raw
history blame contribute delete
160 Bytes
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"]