From ed359e36789eb7647514ec085fd605958f745472 Mon Sep 17 00:00:00 2001 From: "Thomas Nelson Jr (arthurdent3)" Date: Mon, 19 Feb 2018 14:21:18 -0500 Subject: 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) --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') 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"] -- cgit 1.2.3-korg