Compare commits

...
7 Commits
Author SHA1 Message Date
calleandGitHub 9fed2f2ae0 Merge pull request #1221 from lnbits/deployment/docker/update-python3.10
docker: update to python 3.10
2022-12-20 11:10:00 +01:00
callebtc 375f5d9f25 docker: update to python 3.10 2022-12-20 11:07:26 +01:00
calleandGitHub ab6d9daf6d Merge pull request #1220 from lnbits/deployment/build_docker_on_minor
deploy: build on minor changes
2022-12-20 10:36:41 +01:00
callebtc 4bd0372819 deploy: build on minor changes 2022-12-20 10:30:32 +01:00
calleandGitHub 9881e68402 Merge pull request #1217 from lnbits/fix/wallets/cln/settings
Fix/wallets/cln/settings
2022-12-19 15:56:09 +01:00
callebtc 7650d5775f backwards compatible 2022-12-19 15:54:31 +01:00
callebtc 385cda47cf fix cln setting 2022-12-19 15:48:55 +01:00
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -7,6 +7,7 @@ on:
push:
tags:
- "[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+.[0-9]+"
- "[0-9]+.[0-9]+.[0-9]+-*"
jobs:
+1 -1
View File
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.10-slim
RUN apt-get clean
RUN apt-get update
+1
View File
@@ -82,6 +82,7 @@ class ClicheFundingSource(LNbitsSettings):
class CoreLightningFundingSource(LNbitsSettings):
corelightning_rpc: Optional[str] = Field(default=None)
clightning_rpc: Optional[str] = Field(default=None)
class EclairFundingSource(LNbitsSettings):