mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
10 lines
236 B
Docker
10 lines
236 B
Docker
|
FROM ubuntu:14.04
|
||
|
MAINTAINER Seongyeol Lim <seongyeol37@gmail.com>
|
||
|
|
||
|
COPY . /go/src/github.com/docker/docker
|
||
|
ADD . /
|
||
|
ADD [ "vimrc", "/tmp" ]
|
||
|
COPY [ "bashrc", "/tmp" ]
|
||
|
COPY [ "test file", "/tmp" ]
|
||
|
ADD [ "test file", "/tmp/test file" ]
|