blob: e8d1cc1788ff403e70115f31274ccae210ef3260 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM python:2
ENV https_proxy "$https_proxy"
#ENV TZ=Europe/Warsaw
ADD DMaaP.py /
ADD CommonEventFormat_28.3.json /
RUN pip install jsonschema robotframework
EXPOSE 2222
CMD [ "python", "./DMaaP.py" ]
|