mirror of
https://github.com/azaion/flights.git
synced 2026-04-23 07:56:32 +00:00
85921fa1ae
- 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.
16 lines
295 B
YAML
16 lines
295 B
YAML
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
|