Add integration between pol and mysql charms
[osm/devops.git] / Dockerfile
index ffc3613..5717b7a 100644 (file)
 # License for the specific language governing permissions and limitations
 # under the License.
 #
-# For those usages not covered by the Apache License, Version 2.0 please
-# contact: legal@canonical.com
-#
-# To get in touch with the maintainers, please contact:
-# osm-charmers@lists.launchpad.net
 ##
+########################################################################################
+# This Dockerfile is intented for devops testing and deb package generation
+#
+# To run stage 2 locally:
+#
+#   docker build -t stage2 .
+#   docker run -ti -v `pwd`:/work -w /work --entrypoint /bin/bash stage2
+#   devops-stages/stage-test.sh
+#   devops-stages/stage-build.sh
+#
 
 FROM ubuntu:18.04
+ENV LANG en_IN.UTF-8
+ENV LC_ALL en_IN.UTF-8
+ENV LANGUAGE en_IN.UTF-8
+
+RUN DEBIAN_FRONTEND=noninteractive apt-get update && \
+    DEBIAN_FRONTEND=noninteractive apt-get -y install \
+        debhelper \
+        dh-make \
+        git \
+        python3.8 \
+        python3-all \
+        python3-dev \
+        python3-setuptools
 
-RUN apt-get update && apt-get -y install git build-essential dh-make tox python python3.8 python3-dev python3-pip
+RUN python3 -m easy_install pip==21.0.1
+RUN pip3 install tox==3.22.0