mirror of
https://github.com/azaion/detections.git
synced 2026-06-21 13:41:09 +00:00
6ad4b700dd
ci/woodpecker/push/02-build-push Pipeline was successful
* Run tests * Run tests * Run tests * Run tests * Added rebuild * Added files for e2e tests * Added rebuild * Added rebuild * Added biuld TensorRT flag * Changed to use NumPy 1.x for Jetson * Make universal invocation * Make Cython constans * Changed to prepare onnx * Changed smoke-test to wait AI conversion * Added step for model conversion * Changed to not run step in parallel * Push model to docker registry * Push model to docker registry * Push model to docker registry
23 lines
729 B
Docker
23 lines
729 B
Docker
FROM nvcr.io/nvidia/l4t-jetpack:r36.2.0
|
|
ARG CI_COMMIT_SHA=unknown
|
|
ENV AZAION_REVISION=$CI_COMMIT_SHA
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
python3 python3-pip python3-dev gcc \
|
|
libgl1 libglib2.0-0 \
|
|
python3-libnvinfer python3-libnvinfer-dev \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
|
|
WORKDIR /app
|
|
COPY requirements.txt requirements-jetson.txt ./
|
|
RUN pip3 install --no-cache-dir -r requirements-jetson.txt
|
|
COPY . .
|
|
RUN BUILD_TENSORRT_EXTENSIONS=1 python3 setup.py build_ext --inplace
|
|
ENV PYTHONPATH=/app/src
|
|
RUN adduser --disabled-password --no-create-home --gecos "" appuser \
|
|
&& chown -R appuser /app
|
|
USER appuser
|
|
EXPOSE 8080
|
|
CMD ["python3", "-m", "uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]
|