diff options
author | yangyan <yangyanyj@chinamobile.com> | 2019-05-10 18:03:53 +0800 |
---|---|---|
committer | yangyan <yangyanyj@chinamobile.com> | 2019-05-10 18:04:06 +0800 |
commit | 75fa91342abe1056a802c5a8272670ded30618d9 (patch) | |
tree | ce815a6089b75172b3c27a22eec04c55a156f047 /lcm/docker/Dockerfile | |
parent | d6dd15bbcf04877127f867176fa501f7662f7159 (diff) |
Add ARG and PKG_VERSION to Dockerfile
Change-Id: I7ca5edf7c78039660732a3a3807d84e2d33beceb
Issue-ID: VFC-1383
Signed-off-by: yangyan <yangyanyj@chinamobile.com>
Diffstat (limited to 'lcm/docker/Dockerfile')
-rwxr-xr-x | lcm/docker/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lcm/docker/Dockerfile b/lcm/docker/Dockerfile index cb866d8d..ad49eeff 100755 --- a/lcm/docker/Dockerfile +++ b/lcm/docker/Dockerfile @@ -2,8 +2,11 @@ FROM python:2-alpine ARG HTTP_PROXY=${HTTP_PROXY} ARG HTTPS_PROXY=${HTTPS_PROXY} +ARG PKG_VERSION ENV http_proxy $HTTP_PROXY ENV https_proxy $HTTPS_PROXY +ENV pkg_verison=${PKG_VERSION} + ADD . /service WORKDIR /service |