RO docker container based on ubuntu 18.04 00/7800/4
authorcalvinosanch <guillermo.calvinosanchez@altran.com>
Wed, 24 Jul 2019 10:45:04 +0000 (10:45 +0000)
committercalvinosanch <guillermo.calvinosanchez@altran.com>
Thu, 19 Sep 2019 10:02:15 +0000 (12:02 +0200)
Change-Id: I2a8514f4673caa1c08ee4eaefd56475e3966a17e
Signed-off-by: calvinosanch <guillermo.calvinosanchez@altran.com>
docker/Dockerfile-local

index 2abdee8..1dff02d 100644 (file)
@@ -1,11 +1,28 @@
-from ubuntu:xenial
+##
+# Copyright {yyyy} {name of copyright owner}
+#
+# 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.
+##
+
+########################################################################
+
+from ubuntu:18.04
 
 LABEL authors="Gennadiy Dubina, Alfonso Tierno, Gerardo Garcia"
 
 RUN apt-get update && \
     DEBIAN_FRONTEND=noninteractive apt-get -y install software-properties-common && \
-    DEBIAN_FRONTEND=noninteractive add-apt-repository -y cloud-archive:queens && \
-    apt-get update && \
+    DEBIAN_FRONTEND=noninteractive apt-get update && \
     DEBIAN_FRONTEND=noninteractive apt-get -y install git python python-pip && \
     DEBIAN_FRONTEND=noninteractive apt-get -y install wget tox && \
     DEBIAN_FRONTEND=noninteractive pip2 install pip==9.0.3 && \