From 26ebc61a7916855ed3a718baa28d1a7d430c3da6 Mon Sep 17 00:00:00 2001 From: Min RK Date: Mon, 16 Jul 2018 18:07:17 -0700 Subject: [PATCH] move integration-test dockerfile to integration-tests directory --- .circleci/integration-test.py | 5 +++-- Dockerfile => integration-tests/Dockerfile | 0 2 files changed, 3 insertions(+), 2 deletions(-) rename Dockerfile => integration-tests/Dockerfile (100%) diff --git a/.circleci/integration-test.py b/.circleci/integration-test.py index 68b51f0..6751563 100644 --- a/.circleci/integration-test.py +++ b/.circleci/integration-test.py @@ -87,8 +87,9 @@ def main(): image_name = 'tljh-systemd' container_name = 'tljh-ci-run' - - source_path = os.path.abspath(os.path.join(os.path.dirname(__file__), '..')) + source_path = os.path.abspath( + os.path.join(os.path.dirname(__file__), os.pardir, 'integration-tests') + ) if args.action == 'build-image': build_systemd_image(image_name, source_path) diff --git a/Dockerfile b/integration-tests/Dockerfile similarity index 100% rename from Dockerfile rename to integration-tests/Dockerfile