blob: 202cafc6948ab724df51b415085fbf8e081a7072 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# SPDX-license-identifier: Apache-2.0
##############################################################################
# Copyright (c) 2018
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
FROM python:2.7
ARG HTTP_PROXY=${HTTP_PROXY}
ARG HTTPS_PROXY=${HTTPS_PROXY}
ENV http_proxy $HTTP_PROXY
ENV https_proxy $HTTPS_PROXY
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" ]
|