Adding Dockerfile to create a container to build.

This commit is contained in:
emiliano.vavassori 2023-12-02 03:01:14 +01:00
parent 142a09df14
commit 28528aa063
1 changed files with 5 additions and 0 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM python:3.9-slim
RUN pip install loaih
ENTRYPOINT [ "/usr/local/bin/loaih" ]
CMD [ "--help" ]