You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
232 B
12 lines
232 B
FROM quay.io/nmasse-redhat/jetpack-multiarch:r36.4.0
|
|
|
|
ADD *.py *.jpg *.onnx /opt/app
|
|
WORKDIR /opt/app
|
|
RUN <<EOF
|
|
set -Eeu
|
|
pip install -y onnxruntime_gpu
|
|
pip install -r requirements.txt
|
|
EOF
|
|
|
|
ENTRYPOINT [ "python3", "app.py" ]
|
|
ARG [ ]
|
|
|