Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
|
@@ -1,4 +1,6 @@
|
|
| 1 |
FROM python:3.8-slim
|
|
|
|
|
|
|
| 2 |
WORKDIR /home/opyidrecog
|
| 3 |
COPY ./opyidrecog.py .
|
| 4 |
COPY ./app.py .
|
|
|
|
| 1 |
FROM python:3.8-slim
|
| 2 |
+
RUN apt-get update -y
|
| 3 |
+
RUN apt-get install -y libpcsclite-dev psmisc
|
| 4 |
WORKDIR /home/opyidrecog
|
| 5 |
COPY ./opyidrecog.py .
|
| 6 |
COPY ./app.py .
|