Add new license claim
[ric-plt/tracelibcpp.git] / ci / Dockerfile
index 3a10250..947ecd1 100644 (file)
 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 # See the License for the specific language governing permissions and
 # limitations under the License.
-
+#
+# This source code is part of the near-RT RIC (RAN Intelligent Controller)
+# platform project (RICP).
+#
 # CI to verify the tracingcpp library
 # Inherits C toolchain from buildpack-deps:stretch
 # Adds required build tools
@@ -23,13 +26,10 @@ FROM buildpack-deps:stretch
 RUN apt-get update && apt-get -q -y install \
   cmake \
   rpm \
-  rename \
-  alien
+  rename
 
 RUN mkdir -p /tmp/build
 COPY . /tmp/build
 RUN cd /tmp/build && ci/ci_build.sh
 
-RUN cd /tmp/build && ci/build_opentracing.sh
-
 ENTRYPOINT ["/tmp/build/ci/publish.sh"]