Update Dockerfile
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -14,13 +14,13 @@ WORKDIR /home/recognito_id
|
|
14 |
COPY . .
|
15 |
|
16 |
ADD https://huggingface.co/recognito/ID-Document-Liveness-Detection-Models/resolve/main/model.zip .
|
17 |
-
RUN unzip ./model.zip -d ./id_live/engine/ && rm ./model.zip
|
18 |
|
19 |
# Make the scripts executable
|
20 |
RUN chmod +x install.sh run_demo.sh
|
21 |
|
22 |
# Run the install.sh script to perform any installation tasks
|
23 |
-
RUN apt-get update && apt-get install -y sudo
|
|
|
24 |
RUN ./install.sh
|
25 |
|
26 |
# Expose port 8000(flask), 7860(gradio)
|
|
|
14 |
COPY . .
|
15 |
|
16 |
ADD https://huggingface.co/recognito/ID-Document-Liveness-Detection-Models/resolve/main/model.zip .
|
|
|
17 |
|
18 |
# Make the scripts executable
|
19 |
RUN chmod +x install.sh run_demo.sh
|
20 |
|
21 |
# Run the install.sh script to perform any installation tasks
|
22 |
+
RUN apt-get update && apt-get install -y sudo unzip
|
23 |
+
RUN unzip ./model.zip -d ./id_live/engine/ && rm ./model.zip
|
24 |
RUN ./install.sh
|
25 |
|
26 |
# Expose port 8000(flask), 7860(gradio)
|