Use pip and venv for installation

This commit is contained in:
Brain 2023-05-02 22:37:07 +02:00
parent d2cc570bf3
commit 2cfa61aeaa
Signed by untrusted user: Brain
GPG Key ID: 9CF47083EE57670D
1 changed files with 10 additions and 10 deletions

View File

@ -16,9 +16,9 @@ steps:
image: python:3.10-alpine
commands:
- apk add imagemagick
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor==3.3.8
- python3 -m venv venv
- . venv/bin/activate
- pip install -r requirements.txt
- lektor build
---
@ -38,9 +38,9 @@ steps:
from_secret: drone_ssh_key
commands:
- apk add imagemagick
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor==3.3.8
- python3 -m venv venv
- . venv/bin/activate
- pip install -r requirements.txt
- lektor build
- apk add rsync openssh
- mkdir ~/.ssh
@ -56,9 +56,9 @@ steps:
from_secret: drone_ssh_key
commands:
- apk add imagemagick
- python3 -m pip install --user pipx
- export PATH=/root/.local/bin:$PATH
- pipx install lektor==3.3.8
- python3 -m venv venv
- . venv/bin/activate
- pip install -r requirements.txt
- lektor build
- apk add rsync openssh
- mkdir ~/.ssh
@ -70,6 +70,6 @@ steps:
---
kind: signature
hmac: a04843afc36b75a13b62544539985bbf077d27f55d482737a3a20b33163d4eb9
hmac: 1634ef6329d6399a622c569b06bf084859854e34958585f2a83bd2f0b1bb47ca
...