From ce7b87fada138315b4ce22ff0890613e5a9aacc9 Mon Sep 17 00:00:00 2001 From: keven1024 Date: Mon, 2 Jun 2025 15:12:50 +0800 Subject: [PATCH] fix: correct Dockerfile paths in CI/CD configuration for backend, frontend, and worker services --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index c261381..f40c24b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -13,7 +13,7 @@ steps: context: ./backend/ password: from_secret: docker_password - dockerfile: Dockerfile + dockerfile: ./backend/Dockerfile tags: - ${DRONE_TAG} - latest @@ -27,7 +27,7 @@ steps: context: ./front/ password: from_secret: docker_password - dockerfile: Dockerfile + dockerfile: ./front/Dockerfile tags: - ${DRONE_TAG} - latest @@ -41,7 +41,7 @@ steps: context: ./worker/ password: from_secret: docker_password - dockerfile: Dockerfile + dockerfile: ./worker/Dockerfile tags: - ${DRONE_TAG} - latest