Initial OpenECOMP MSO commit
[so.git] / packages / docker / src / main / docker / docker-files / Dockerfile.ubuntu-16.04-update
1 FROM ubuntu:16.04
2
3 ### File Author / Maintainer
4 MAINTAINER "Ecomp Opensource Team"
5 LABEL Description="This image contains an updated version of ubuntu 16.04" Version="1.0"
6
7 ARG http_proxy
8 ARG https_proxy
9 ARG chef_repo_branch_name
10 ARG chef_repo_address
11 ARG chef_repo_git_name
12 ARG chef_repo_git_username
13 ENV HTTP_PROXY=$http_proxy
14 ENV HTTPS_PROXY=$https_proxy
15 ENV http_proxy=$HTTP_PROXY
16 ENV https_proxy=$HTTPS_PROXY
17
18 ### update first the image to fix potential security issues 
19 RUN apt-get update
20 RUN apt-get -y dist-upgrade
21
22