chatgpt4 / Dockerfile
Yarik
Initial commit
de9ce4c
raw
history blame contribute delete
147 Bytes
FROM python:3.11-slim
WORKDIR $HOME/app
COPY . .
RUN pip install -r requirements.txt
VOLUME /data
EXPOSE 7860
CMD ["python", "-m", "apis.chat_api"]