Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -1,6 +1,8 @@
|
|
1 |
FROM ubuntu:20.04
|
|
|
2 |
RUN apt-get update -y
|
3 |
RUN apt-get install -y libpcsclite-dev psmisc
|
|
|
4 |
RUN mkdir -p /home/kby-ai-idcard
|
5 |
WORKDIR /home/kby-ai-idcard
|
6 |
COPY ./libidsdk.so .
|
|
|
1 |
FROM ubuntu:20.04
|
2 |
+
RUN ln -snf /usr/share/zoneinfo/$CONTAINER_TIMEZONE /etc/localtime && echo $CONTAINER_TIMEZONE > /etc/timezone
|
3 |
RUN apt-get update -y
|
4 |
RUN apt-get install -y libpcsclite-dev psmisc
|
5 |
+
RUN apt-get install -y python3 python3-pip python3-opencv
|
6 |
RUN mkdir -p /home/kby-ai-idcard
|
7 |
WORKDIR /home/kby-ai-idcard
|
8 |
COPY ./libidsdk.so .
|