Skip to content

Instantly share code, notes, and snippets.

@josephok
Created May 1, 2016 10:51
Show Gist options
  • Save josephok/a63da7511b4f4990c92e4632e9d525f3 to your computer and use it in GitHub Desktop.
Save josephok/a63da7511b4f4990c92e4632e9d525f3 to your computer and use it in GitHub Desktop.
Ubuntu 14.04 Dockerfile
FROM ubuntu:14.04
MAINTAINER Joseph <[email protected]>
COPY sources.list /etc/apt/
RUN apt-get update
RUN apt-get install -y vim
deb http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-security main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-updates main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-proposed main restricted universe multiverse
deb-src http://mirrors.aliyun.com/ubuntu/ trusty-backports main restricted universe multiverse
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment