diff options
author | 2018-02-19 14:21:18 -0500 | |
---|---|---|
committer | 2018-02-19 14:25:00 -0500 | |
commit | ed359e36789eb7647514ec085fd605958f745472 (patch) | |
tree | a8d4f300cc0301ea0b90f094279d40908799f11b /Dockerfile | |
parent | 5bc0707087ab2a1e10402bbeaab08430a15ad489 (diff) |
Set up project to work with docker
Update Pom to add docker plugin and add Dockerfile to build docker image.
This is part of the requirement for a functional test case with the
Robot Framework.
Issue-ID: MUSIC-32
Change-Id: I548730b75ef0c73d6e840e4894b7f4460d94deb6
Signed-off-by: Thomas Nelson Jr (arthurdent3) <tn1381@att.com>
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..0c06fba5 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,4 @@ +FROM busybox:latest +RUN mkdir -p app +COPY maven/ app/ +CMD ["tail", "-f", "/dev/null"] |