pdf-query-api / Dockerfile
tstech1's picture
Update Dockerfile
82f8e04 verified
raw
history blame contribute delete
101 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "main.py"]