summaryrefslogtreecommitdiffstats
path: root/packages/docker/src/main/docker/docker-files/Dockerfile.ubuntu-16.04-update
blob: 8ed710745a15af298c66ad50a0d4c3e6ee631fac (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 ONAP 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