aboutsummaryrefslogtreecommitdiffstats
path: root/packages/docker/src/main/docker/docker-files/Dockerfile.ubuntu-16.04-update
blob: 2e8f268f196d1fc60223fa91e7b3675df0700080 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM ubuntu:16.04

### File Author / Maintainer
MAINTAINER "The OpenECOMP Team"
LABEL Description="This image contains an updated version of ubuntu 16.04" Version="1.0"

ARG http_proxy
ARG https_proxy
ARG chef_repo_branch_name
ARG chef_repo_address
ARG chef_repo_git_name
ARG chef_repo_git_username
ENV HTTP_PROXY=$http_proxy
ENV HTTPS_PROXY=$https_proxy
ENV http_proxy=$HTTP_PROXY
ENV https_proxy=$HTTPS_PROXY

### update first the image to fix potential security issues 
RUN apt-get update
RUN apt-get -y dist-upgrade