Spaces:
Runtime error
Runtime error
File size: 323 Bytes
d30a373 |
1 2 3 4 5 6 7 8 9 10 11 12 |
FROM python:3.8-slim
RUN apt-get update -y
RUN apt-get install -y libpcsclite-dev psmisc
RUN mkdir -p /home/faceonlive_iddocrecog
WORKDIR /home/faceonlive_iddocrecog
COPY ./requirements.txt .
COPY ./ocrengine .
COPY ./app.py .
COPY ./demo.py .
RUN pip3 install -r requirements.txt
CMD [ "python3", "app.py"]
EXPOSE 8080 |