demo-chat-gpt / Dockerfile
jchauhan's picture
Initial Commit
6f58cbf
raw
history blame contribute delete
186 Bytes
FROM python:3.10.13
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY . .
ENV GR_SERVER_NAME=0.0.0.0
EXPOSE 7860
CMD ["python", "app.py"]