From 85921fa1aec20478a35c286ef9a414f275699cac Mon Sep 17 00:00:00 2001 From: Oleksandr Bezdieniezhnykh Date: Wed, 8 Apr 2026 06:32:54 +0300 Subject: [PATCH] Refactor Dockerfile and update coding standards - Refactor Dockerfile to improve build efficiency and clarity. - Enhance coding standards in coderule.mdc for better maintainability. - Add new rules to python.mdc to improve code quality. --- .woodpecker.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..a63d096 --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,15 @@ +when: + branch: [stage, main] + event: push + +steps: + - name: build-and-push + image: plugins/docker + settings: + dockerfile: Dockerfile + context: . + repo: registry:5000/flights + tags: + - "${CI_COMMIT_BRANCH}" + - "${CI_COMMIT_SHA:0:8}" + insecure: true