Skip to content

Commit

Permalink
Fix docker
Browse files Browse the repository at this point in the history
  • Loading branch information
pycanis committed Sep 14, 2024
1 parent 3cb4876 commit 8905e22
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
target
tls.cert
admin.macaroon
config.yaml
data
lnrecc.log
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ RUN cargo build --release

FROM debian:bullseye-slim

RUN apt-get update && apt-get install -y \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*

WORKDIR /usr/local/bin

ARG UID=10001
Expand All @@ -30,4 +34,4 @@ USER appuser

COPY --from=build /usr/src/app/target/release/lnrecc .

CMD ["lnrecc"]
ENTRYPOINT ["lnrecc"]
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@ You need to have gRPC API access to a LND lightning node you want to spend from,

## Installation

Download the archive from the release page, optionally verify the signature, extract it, update the `config.yaml` with your configuratoin and run the executable. Or you can clone the repository and build it yourself. Or you can run in [docker]().
Download the archive from the release page, optionally verify the signature, extract it, update the `config.yaml` with your configuration and run the executable. Or you can clone the repository and build it yourself. Or you can run in docker.

## Upcoming features

- Ability to spend from Core Lightning
- Bolt12
- Posibility to set up notifications after every payment
- Specify timezones
- And whatever else comes up
- Whatever else comes up

## Contributing

Expand Down

0 comments on commit 8905e22

Please sign in to comment.