20 lines
250 B
YAML
20 lines
250 B
YAML
stages:
|
|
- linting
|
|
- testing
|
|
- build
|
|
- staging
|
|
- production
|
|
|
|
default:
|
|
image: python:3.12-slim
|
|
|
|
#pre-commit:
|
|
# stage: linting
|
|
|
|
build_image:
|
|
stage: build
|
|
image: docker
|
|
services:
|
|
- docker
|
|
script:
|
|
- docker build -t facturio .
|