blob: 724b9d7cc22a5d9d883c1ea75f72dc74a7bb377a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM python:2.7-alpine
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" ]
|