chat2api/Dockerfile
2024-04-06 15:05:57 +08:00

11 lines
146 B
Docker

FROM python:3.11-alpine
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 5005
CMD ["python", "chat2api.py"]