Some adjustments to Docker image.

This commit is contained in:
emiliano.vavassori 2024-08-22 20:59:07 +02:00
parent 8a9541c4f6
commit ad1ef60947
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
# vim:sts=4:sw=4
FROM python:3.9-slim-bullseye
RUN pip install loaih
RUN mkdir /build && \
pip install loaih
WORKDIR /build
ENTRYPOINT [ "/usr/local/bin/loaih" ]
CMD [ "--help" ]