Spaces:
Runtime error
Runtime error
Update
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
FROM python:3.8-slim
|
2 |
RUN apt-get update -y
|
3 |
RUN apt-get install -y libpcsclite-dev psmisc libgl1 libglib2.0-0
|
4 |
-
RUN mkdir -p /home/
|
5 |
-
WORKDIR /home/
|
6 |
COPY ./requirements.txt .
|
7 |
COPY ./ocrengine .
|
8 |
-
COPY ./ocrengine/
|
9 |
COPY ./app.py .
|
10 |
COPY ./demo.py .
|
11 |
RUN pip3 install -r requirements.txt
|
|
|
1 |
FROM python:3.8-slim
|
2 |
RUN apt-get update -y
|
3 |
RUN apt-get install -y libpcsclite-dev psmisc libgl1 libglib2.0-0
|
4 |
+
RUN mkdir -p /home/faceonlive_id_recognition
|
5 |
+
WORKDIR /home/faceonlive_id_recognition
|
6 |
COPY ./requirements.txt .
|
7 |
COPY ./ocrengine .
|
8 |
+
COPY ./ocrengine/libttvcore.so /usr/lib
|
9 |
COPY ./app.py .
|
10 |
COPY ./demo.py .
|
11 |
RUN pip3 install -r requirements.txt
|