diff options
author | Gergely Csatari <gergely.csatari@nokia.com> | 2021-09-08 11:53:02 +0300 |
---|---|---|
committer | Eric Debeau <eric.debeau@orange.com> | 2021-09-24 20:04:24 +0000 |
commit | 9205c55c1acbb4fb180594b14e50ef20dca9b0db (patch) | |
tree | 4f703ad866dd33017ac14d98fdfd6e57f02c2b79 /tools/c2m-wrapper.sh | |
parent | 12d98eaf24a1c673c867a796520204e7bbb27142 (diff) |
Docker build and run environemnt for c2m
- Dockerfile to build a container for c2m
- A script to build the container
- A script to run the container
- A wrapper script to run c2m in the container
Issue-ID: DOC-762
Signed-off-by: Gergely Csatari <gergely.csatari@nokia.com>
Change-Id: Icea55512658bbb8a78934f2a5b4313345927e7b7
Diffstat (limited to 'tools/c2m-wrapper.sh')
-rwxr-xr-x | tools/c2m-wrapper.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tools/c2m-wrapper.sh b/tools/c2m-wrapper.sh new file mode 100755 index 000000000..8bfbbf97b --- /dev/null +++ b/tools/c2m-wrapper.sh @@ -0,0 +1,15 @@ +#!/bin/bash +# +# Copyright 2021 Nokia +# Licensed under the Apache License 2.0 +# SPDX-License-Identifier: Apache-2.0 +set -x +echo "c2m-wrapper -------------------------------------------------------------" + +rst_editor="ls " ./c2m.sh $1 + +out_dir="/mount/output" +[ ! -d $out_dir ] && mkdir $out_dir +[ -d $out_dir ] && rm -rf $out_dir/* + +mv -f -v output/* $out_dir
\ No newline at end of file |