aboutsummaryrefslogtreecommitdiffstats
path: root/sanitycheck/dmaap-simulator/Dockerfile
blob: f84cac2fe7aa69ba8fa8b89e27c432e5f75d66dd (plain)
1
2
3
4
5
6
7
FROM python:3
WORKDIR /application
COPY ./simulator.py ./
COPY ./requirements.txt ./
RUN pip install -r ./requirements.txt
ENV FLASK_APP=./simulator.py
CMD ["python", "./simulator.py"]