summaryrefslogtreecommitdiff
path: root/infra/nnfw/command/docker-run
blob: b523d61a3086753998f8c7f71142b19de86a21b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

import "docker.configuration"

docker run $DOCKER_RUN_OPTS $DOCKER_ENV_VARS $DOCKER_VOLUMES $DOCKER_IMAGE_NAME "$@"
EXITCODE=$?

docker_cleanup

if [ $EXITCODE -ne 0 ]; then
  exit $EXITCODE
fi