reg/vendor/github.com/docker/docker-ce/components/engine/builder/dockerfile/parser/testfiles/ADD-COPY-with-JSON/Dockerfile

12 lines
273 B
Docker
Raw Normal View History

FROM ubuntu:14.04
LABEL maintainer Seongyeol Lim <seongyeol37@gmail.com>
COPY . /go/src/github.com/docker/docker
ADD . /
ADD null /
COPY nullfile /tmp
ADD [ "vimrc", "/tmp" ]
COPY [ "bashrc", "/tmp" ]
COPY [ "test file", "/tmp" ]
ADD [ "test file", "/tmp/test file" ]