-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor<dockers> change file move in all docker images to adopt with…
… new files
- Loading branch information
1 parent
38ffdfe
commit 1f826e3
Showing
13 changed files
with
62 additions
and
53 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,13 @@ | ||
FROM centipede2donald/nvidia-jetson:jp441-nano-cp36-oxrt-3 | ||
|
||
COPY ./common common/ | ||
COPY ./inference app/ | ||
WORKDIR /app | ||
# Copy application files | ||
COPY ./BYODR_utils/common/ /app/BYODR_utils/common/ | ||
COPY ./BYODR_utils/JETSON_specific/ /app/BYODR_utils/JETSON_specific/ | ||
|
||
COPY ./build/*.onnx /models/ | ||
COPY ./build/*.ini /models/ | ||
COPY ./build/ /app/models/ | ||
|
||
COPY ./inference /app/inference | ||
ENV PYTHONPATH "/app:${PYTHONPATH}" | ||
|
||
WORKDIR /app/inference | ||
|
||
ENV PYTHONPATH "${PYTHONPATH}:/common" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
FROM centipede2donald/raspbian-stretch:gst-omx-rpi-0.50.2 | ||
|
||
|
||
COPY ./ app/ | ||
WORKDIR /app | ||
# Copy application files | ||
COPY ./BYODR_utils/common/ /app/BYODR_utils/common/ | ||
COPY ./BYODR_utils/PI_specific/ /app/BYODR_utils/PI_specific/ | ||
|
||
COPY ./stream /app/stream | ||
ENV PYTHONPATH "/app:${PYTHONPATH}" | ||
|
||
WORKDIR /app/stream | ||
|
||
ENV PYTHONPATH "${PYTHONPATH}:/common" | ||
|
||
CMD ["sleep", "infinity"] |