From bc265e030ee36655496704bd210108a92092b645 Mon Sep 17 00:00:00 2001 From: Th0rn0 Date: Sun, 24 Mar 2024 17:27:25 +0000 Subject: [PATCH] context fix on pipeline --- .github/workflows/docker-image.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index ded792327..2f9cbc8b6 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -28,9 +28,6 @@ jobs: - name: Create Dummy .env run: touch src/.env - - - name: Build Images - run: make build - name: Build App Dependencies run: make build && make artisan-storage-link @@ -38,7 +35,7 @@ jobs: name: Push - NGINX uses: docker/build-push-action@v5 with: - context: resources/docker/nginx/ + context: . file: resources/docker/nginx/Dockerfile push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/lanops-manager:nginx-latest @@ -46,7 +43,7 @@ jobs: name: Push - APP uses: docker/build-push-action@v5 with: - context: resources/docker/php/ + context: . file: resources/docker/php/Dockerfile push: true tags: ${{ secrets.DOCKERHUB_USERNAME }}/lanops-manager:app-latest