Skip to content

Commit

Permalink
fix: install datadreamer from source
Browse files Browse the repository at this point in the history
  • Loading branch information
sokovninn committed Apr 2, 2024
1 parent c366e49 commit 4ca4095
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,11 @@ FROM pytorch/pytorch:2.1.0-cuda12.1-cudnn8-runtime
WORKDIR /app

## instal
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN pip install datadreamer
RUN apt-get update && apt-get install ffmpeg libsm6 libxext6 -y
RUN apt-get install -y git
RUN git clone https://github.com/luxonis/datadreamer.git -b main

RUN cd datadreamer && pip install .

## define image execution
ENTRYPOINT ["datadreamer"]

0 comments on commit 4ca4095

Please sign in to comment.