16 lines
268 B
YAML
16 lines
268 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: run
|
|
image: python:3.9
|
|
commands:
|
|
- pip install -r requirements.txt
|
|
- python app.py
|
|
|
|
- name: cleanup
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "Cleaning up any created data..."
|
|
- rm -rf /tmp/* |