pdf.ai / Dockerfile
sdas2485's picture
Create Dockerfile
a748ceb verified
raw
history blame contribute delete
119 Bytes
FROM python:3.9
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
CMD gunicorn -w 4 -b 0.0.0.0:7860 app:app