23 lines
449 B
YAML
23 lines
449 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 \
|
|
ca-certificates \
|
|
curl \
|
|
python3.9 \
|
|
python3-pip \
|
|
python3.9-dev \
|
|
python3-setuptools \
|
|
python3-wheel \
|
|
pipx
|
|
- pipx install pipenv
|
|
- pipenv install
|
|
- cd updater
|
|
- pipenv run python main.py
|