2023-10-15 04:31:48 +01:00
|
|
|
FROM python:3.10.5-buster
|
|
|
|
|
2023-10-27 18:54:28 +01:00
|
|
|
LABEL org.opencontainers.image.description "Dokcer image for running wyzely-detect"
|
|
|
|
LABEL org.opencontainers.image.source "https://github.com/slashtechno/wyzely-detect"
|
|
|
|
|
2023-10-15 04:31:48 +01:00
|
|
|
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
|
2023-10-15 04:31:48 +01:00
|
|
|
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN poetry install
|
|
|
|
|
2023-10-22 01:59:02 +01:00
|
|
|
ENTRYPOINT ["poetry", "run", "python", "-m", "wyzely_detect"]
|