Skip to content

Commit bc9e2b4

Browse files
authored
use 'uv' instead of 'poetry' / cleanup apt cache (#54)
* use 'uv' instead of 'poetry' / cleanup apt cache * bump version to 1.3.0.1
1 parent 7062c4b commit bc9e2b4

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ RUN apt-get update && \
1616
apt-get install -y \
1717
xxd \
1818
curl \
19-
jq
19+
jq && \
20+
apt-get clean && \
21+
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
2022

2123
RUN pip3 install bcrypt
2224

docker_entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ if [ "$CONFIG_LN_IMPLEMENTATION" = "LndRestWallet" ]; then
144144
done
145145
fi
146146

147-
poetry run lnbits --port $LNBITS_PORT --host $LNBITS_HOST &
147+
uv run lnbits --port $LNBITS_PORT --host $LNBITS_HOST --forwarded-allow-ips='*' &
148148
lnbits_process=$!
149149

150150
until (

manifest.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id: lnbits
22
title: "LNBits"
3-
version: 1.3.0
3+
version: 1.3.0.1
44
release-notes: |
55
* Update to v1.3.0 [release notes](https://github.com/lnbits/lnbits/releases/tag/v1.3.0)
66
license: MIT

scripts/services/migrations.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ export const migration: T.ExpectedExports.migration =
3333
},
3434
},
3535
},
36-
"1.3.0"
36+
"1.3.0.1"
3737
);

0 commit comments

Comments
 (0)