Remove Debian bases with c, go tools 43/343/1
authorLott, Christopher (cl778h) <cl778h@att.com>
Fri, 14 Jun 2019 14:11:06 +0000 (10:11 -0400)
committerLott, Christopher (cl778h) <cl778h@att.com>
Fri, 14 Jun 2019 14:11:06 +0000 (10:11 -0400)
Signed-off-by: Lott, Christopher (cl778h) <cl778h@att.com>
Change-Id: Ic49688d461b07974a9151bc019b2048e94214433

docker/bldr-ric-alpine-c/Dockerfile [deleted file]
docker/bldr-ric-alpine-c/container-tag.yaml [deleted file]
docker/bldr-ric-alpine-go/Dockerfile [deleted file]
docker/bldr-ric-alpine-go/container-tag.yaml [deleted file]
docker/bldr-ric-debian-c/Dockerfile [deleted file]
docker/bldr-ric-debian-c/container-tag.yaml [deleted file]
docker/bldr-ric-debian-go/Dockerfile [deleted file]
docker/bldr-ric-debian-go/container-tag.yaml [deleted file]

diff --git a/docker/bldr-ric-alpine-c/Dockerfile b/docker/bldr-ric-alpine-c/Dockerfile
deleted file mode 100644 (file)
index fc9672b..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# O-RAN-SC
-#
-# Copyright (C) 2019 AT&T Intellectual Property and Nokia
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# 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.
-
-# Builder image: Alpine 3.9
-# standard packages: C/C++, cmake, etc.
-# RIC libraries: mcdlog (TODO), rmr
-
-FROM alpine:3.9
-RUN apk update && apk add \
-  autoconf \
-  automake \
-  build-base \
-  cmake \
-  libtool \
-  pkgconfig \
-  git
-
-# MCDLOG version 0.0.2, not pinned
-# fails to build in Alpine
-#RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/com/log \
-#  && cd log && ./autogen.sh && ./configure && make && make install
-
-# RMR version 1.0.24
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \
-  && cd rmr && git checkout a012cf63dfdad3656c995cb06c316fd208c63b98 && cmake . && make install
diff --git a/docker/bldr-ric-alpine-c/container-tag.yaml b/docker/bldr-ric-alpine-c/container-tag.yaml
deleted file mode 100644 (file)
index c312245..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
----
-tag: a3.9-l0.0.2-r1.0.24
diff --git a/docker/bldr-ric-alpine-go/Dockerfile b/docker/bldr-ric-alpine-go/Dockerfile
deleted file mode 100644 (file)
index 426d54c..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# O-RAN-SC
-#
-# Copyright (C) 2019 AT&T Intellectual Property and Nokia
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# 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.
-
-# Builder image: Alpine 3.9
-# standard packages: Go/C++, cmake, etc.
-# RIC libraries: mcdlog (TODO), rmr
-
-FROM alpine:3.9
-RUN apk update && apk add \
-  autoconf \
-  automake \
-  build-base \
-  cmake \
-  libtool \
-  pkgconfig \
-  git \
-  go
-
-# MCDLOG version 0.0.2, not pinned
-# fails to build in Alpine
-#RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/com/log \
-#  && cd log && ./autogen.sh && ./configure && make && make install
-
-# RMR version 1.0.24
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \
-  && cd rmr && git checkout a012cf63dfdad3656c995cb06c316fd208c63b98 && cmake . && make install
diff --git a/docker/bldr-ric-alpine-go/container-tag.yaml b/docker/bldr-ric-alpine-go/container-tag.yaml
deleted file mode 100644 (file)
index 61afe68..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
----
-tag: a3.9-g1.11-l0.0.2-r1.0.24
diff --git a/docker/bldr-ric-debian-c/Dockerfile b/docker/bldr-ric-debian-c/Dockerfile
deleted file mode 100644 (file)
index ea3e84f..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# O-RAN-SC
-#
-# Copyright (C) 2019 AT&T Intellectual Property and Nokia
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# 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.
-
-# Builder image: Debian stretch
-# standard packages: C/C++, cmake, etc.
-# RIC libraries: mcdlog, rmr
-# inherits C and C++ tools from buildpack-deps:stretch
-
-FROM buildpack-deps:stretch
-
-RUN apt-get update && apt-get -q -y install \
-  autoconf \
-  autoconf-archive \
-  automake \
-  cmake \
-  libtool \
-  pkg-config
-
-# version 0.0.2, not pinned
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/com/log \
-  && cd log && ./autogen.sh && ./configure && make && make install
-
-# version 1.0.24
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \
-  && cd rmr && git checkout a012cf63dfdad3656c995cb06c316fd208c63b98 && cmake . && make install
diff --git a/docker/bldr-ric-debian-c/container-tag.yaml b/docker/bldr-ric-debian-c/container-tag.yaml
deleted file mode 100644 (file)
index d1ccc1b..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
----
-tag: stretch-l0.0.2-r1.0.24
diff --git a/docker/bldr-ric-debian-go/Dockerfile b/docker/bldr-ric-debian-go/Dockerfile
deleted file mode 100644 (file)
index 157fd04..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-# O-RAN-SC
-#
-# Copyright (C) 2019 AT&T Intellectual Property and Nokia
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-#      http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# 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.
-
-# Builder image: Debian stretch
-# standard packages: Go, cmake, etc.
-# RIC libraries: mcdlog, rmr
-# inherits C and C++ tools from buildpack-deps:stretch
-
-FROM golang:1.12
-
-RUN apt-get update && apt-get -q -y install \
-  autoconf \
-  autoconf-archive \
-  automake \
-  cmake \
-  libtool \
-  pkg-config
-
-# version 0.0.2, not pinned
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/com/log \
-  && cd log && ./autogen.sh && ./configure && make && make install
-
-# version 1.0.24
-RUN cd /tmp && git clone https://gerrit.o-ran-sc.org/r/ric-plt/lib/rmr \
-  && cd rmr && git checkout a012cf63dfdad3656c995cb06c316fd208c63b98 && cmake . && make install
diff --git a/docker/bldr-ric-debian-go/container-tag.yaml b/docker/bldr-ric-debian-go/container-tag.yaml
deleted file mode 100644 (file)
index 09e9f56..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
----
-tag: stretch-g1.12-l0.0.2-r1.0.24