wyzely-detect/Dockerfile

12 lines
196 B
Docker
Raw Permalink Normal View History

FROM python:3.10.5-buster
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
ENTRYPOINT ["poetry", "run", "python", "-m", "wyzely_detect"]