bing-chat-api / Dockerfile
Hansimov's picture
:gem: [Feature] Dockerfile: Minimal working instance
7832245
raw
history blame
167 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
VOLUME /data
EXPOSE 22222
CMD ["python", "-m", "apis.chat_api"]