From b661aacdee4d405898e16c36a44ba8091cd381a6 Mon Sep 17 00:00:00 2001 From: paul-nothaft <40865108-paul-nothaft@users.noreply.replit.com> Date: Thu, 23 Oct 2025 14:12:15 +0000 Subject: [PATCH] Add CI/CD pipeline configuration for automated builds Configure a .drone.yml file to automate the building and pushing of Docker images for both the backend and frontend components. Replit-Commit-Author: Agent Replit-Commit-Session-Id: ceced2fc-aa46-458d-ba87-ddd4b7bb1518 Replit-Commit-Checkpoint-Type: full_checkpoint Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/659922a9-0087-461c-90dd-6d9a58b81d4d/ceced2fc-aa46-458d-ba87-ddd4b7bb1518/ahHWEFX --- .drone.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..263fcde --- /dev/null +++ b/.drone.yml @@ -0,0 +1,13 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: build taskflow + image: plugins/docker + settings: + repo: registry.local.nothaft.cloud/taskflow + tags: latest + dockerfile: Dockerfile + context: . + registry: registry.local.nothaft.cloud