X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Dockerfile;h=a3f7400443a06b4922903aed820a341317a57ed2;hb=21ba9cee5d08c89b1f48c6fdfc83e04ec192f6a6;hp=ffc36135ee79f8ec17b82a92f5df0c5d48617888;hpb=95ba7e1641316616ce5a9442d485753456ff9525;p=osm%2Fdevops.git diff --git a/Dockerfile b/Dockerfile index ffc36135..a3f74004 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,13 +12,33 @@ # 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 -RUN apt-get update && apt-get -y install git build-essential dh-make tox python python3.8 python3-dev python3-pip +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 python3 -m easy_install pip==21.0.1 +RUN pip3 install tox==3.22.0 + +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +