ocr-2 / Dockerfile
Zienab's picture
Create Dockerfile
7f64d91 verified
raw
history blame contribute delete
182 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . /code
CMD ["python", "app.py"]