├── .dockerignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── VERSION └── circle.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/.dockerignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 16.04.20180706 2 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sameersbn/docker-ubuntu/HEAD/circle.yml --------------------------------------------------------------------------------