summaryrefslogtreecommitdiff
path: root/tests/examplefiles/docker.docker
diff options
context:
space:
mode:
Diffstat (limited to 'tests/examplefiles/docker.docker')
-rw-r--r--tests/examplefiles/docker.docker34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/examplefiles/docker.docker b/tests/examplefiles/docker.docker
deleted file mode 100644
index 1ae3c3a1..00000000
--- a/tests/examplefiles/docker.docker
+++ /dev/null
@@ -1,34 +0,0 @@
-FROM alpine:3.5
-MAINTAINER First O'Last
-
-# comment
-run echo \
- 123 $bar
-RUN apk --update add rsync dumb-init
-
-# Test env with both syntax
-ENV FOO = "BAR"
-ENV FOO \
- "BAR"
-
-COPY foo "bar"
-COPY foo \
- "bar"
-
-HEALTHCHECK \
- --interval=5m --timeout=3s \
- CMD curl -f http://localhost/ || exit 1
-
-# ONBUILD keyword, then with linebreak
-ONBUILD ADD . /app/src
-ONBUILD \
- RUN echo 123 $bar
-
-# Potential JSON array parsing, mixed with linebreaks
-VOLUME \
- /foo
-VOLUME \
- ["/bar"]
-VOLUME ["/bar"]
-VOLUME /foo
-CMD ["foo", "bar"]