aboutsummaryrefslogtreecommitdiffstats
path: root/test/csit/scripts/multicloud-ocata/generic_sim/Dockerfile
blob: 688b58afe517735628b1047e6908a972e8a7150e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:2.7

EXPOSE 8080

RUN mkdir -p /{tmp,etc}/generic_sim

WORKDIR /opt/generic_sim/

COPY . .
RUN pip install --no-cache-dir -r requirements.txt

CMD [ "python", "generic_sim.py" ]