R10 tag/path update
[dcaegen2/platform/plugins.git] / k8s / centos.wagon-builder.dockerfile
1 FROM centos/python-36-centos7:latest as cent
2
3 # Sometimes it's necessary to set a proxy (e.g. in case of local development).
4 # To do it just uncomment those two env variables and set appriopriate values for them.
5 #ENV HTTP_PROXY=
6 #ENV HTTPS_PROXY=
7
8 RUN bash -c "pip install --upgrade pip"
9 RUN bash -c "pip install wagon"
10
11 COPY / k8s/
12
13 USER root
14 RUN bash -c "wagon create -r k8s/requirements.txt k8s/"
15 RUN bash -c "mkdir output"
16 RUN bash -c "mv k8splugin*.wgn output/"