kimi-api / Dockerfile
StarrySkyWorld's picture
Update Dockerfile
422e4d6 verified
raw
history blame contribute delete
106 Bytes
FROM python:3.12
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "openai.py"]