15 lines
318 B
YAML
15 lines
318 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: Updater
|
|
|
|
steps:
|
|
- name: update
|
|
image: eclipse-temurin:17.0.6_10-jdk-focal
|
|
entrypoint: [ "/bin/bash" ]
|
|
commands:
|
|
- apt update
|
|
- apt install -y --no-install-recommends pipx python3.8-venv
|
|
- pipx install pipenv
|
|
- pipenv install
|
|
- cd updater
|
|
- pipenv run python main.py
|