blob: 688b58afe517735628b1047e6908a972e8a7150e [file] [log] [blame]
Shashank Kumar Shankarf8aab842018-04-20 11:22:55 -07001FROM python:2.7
2
3EXPOSE 8080
4
5RUN mkdir -p /{tmp,etc}/generic_sim
6
7WORKDIR /opt/generic_sim/
8
9COPY . .
10RUN pip install --no-cache-dir -r requirements.txt
11
12CMD [ "python", "generic_sim.py" ]