blob: 3a39880b16edda3e5eb44400a5eb9e6e1e739a34 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
FROM python:3
LABEL Name=Forming
LABEL Description="Configuration job for the Moon platform"
LABEL Maintainer="Thomas Duval"
LABEL Url="https://wiki.opnfv.org/display/moon/Moon+Project+Proposal"
USER root
WORKDIR /usr/src/app
RUN pip install --no-cache-dir --upgrade requests pytest pyyaml python_moonutilities python_moondb python_moonclient
ADD . /root
WORKDIR /root
CMD /bin/bash /root/config_moon.sh
|