chatapi / Dockerfile
WillemVH's picture
Update Dockerfile
19dd7ed verified
raw
history blame contribute delete
261 Bytes
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN echo Hello! Welcome to this api thingy. this was made by WillemVH so no copying. okay?
COPY . .
CMD ["gunicorn", "--bind", "0.0.0.0:7860", "app:app"]