From aa1d94f6ac6ce957f776491071bd4ae5c0a45f46 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Tue, 16 Apr 2019 15:34:00 -0700 Subject: [PATCH] RTFM and fix build process --- .gitlab-ci.yml | 4 ++-- Dockerfile => context/Dockerfile | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename Dockerfile => context/Dockerfile (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 69b58b6..37aaa5a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -34,7 +34,7 @@ lint:shell-script: build:master: stage: deploy script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" ./Dockerfile + - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" ./context/ - docker push "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:latest" only: - master @@ -43,7 +43,7 @@ build:master: build:dev: stage: deploy script: - - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" ./Dockerfile + - docker build --pull -t "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" ./context/ - docker push "$CI_REGISTRY_IMAGE/wp-org-plugin-deploy:dev" except: - master diff --git a/Dockerfile b/context/Dockerfile similarity index 100% rename from Dockerfile rename to context/Dockerfile -- GitLab