wyzely-detect/Dockerfile

19 lines
479 B
Docker
Raw Normal View History

FROM python:3.10.5-buster
LABEL org.opencontainers.image.description "Docker image for running wyzely-detect"
LABEL org.opencontainers.image.source "https://github.com/slashtechno/wyzely-detect"
RUN apt update && apt install libgl1 -y
RUN pip install poetry
2022-12-17 23:58:50 +00:00
2022-12-17 22:36:21 +00:00
WORKDIR /app
COPY . .
RUN poetry install
# RUN poetry run pip uninstall -y torchvision
# RUN poetry run pip install torchvision
ENTRYPOINT ["poetry", "run", "python", "-m", "--", "wyzely_detect", "--no-display"]