Skip to content

Commit

Permalink
fix: run backup-server from Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
limpbrains committed Feb 1, 2024
1 parent 13c84ca commit 8852dc7
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/mocha-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ jobs:
uses: docker-practice/[email protected]
timeout-minutes: 30

- name: Install backup-server dependencies
working-directory: backup-server
run: npm i || npm i

- name: Run regtest setup
working-directory: example/docker
run: |
Expand Down
2 changes: 1 addition & 1 deletion backup-server/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20
FROM node:20-alpine

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion backup-server/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "backup-server",
"version": "1.0.0",
"version": "0.0.127",
"description": "",
"main": "index.js",
"engines": {
Expand Down
3 changes: 2 additions & 1 deletion example/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,8 @@ services:

ldk-backup-server:
container_name: ldk-backup-server
image: synonymsoft/ldk-backup-server:1.0.0
# image: synonymsoft/ldk-backup-server:1.0.0
build: ../../backup-server/
expose:
- '3003'
ports:
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ PODS:
- React-jsinspector (0.72.4)
- React-logger (0.72.4):
- glog
- react-native-ldk (0.0.127):
- react-native-ldk (0.0.128):
- React
- react-native-randombytes (3.6.1):
- React-Core
Expand Down Expand Up @@ -723,7 +723,7 @@ SPEC CHECKSUMS:
React-jsiexecutor: c7f826e40fa9cab5d37cab6130b1af237332b594
React-jsinspector: aaed4cf551c4a1c98092436518c2d267b13a673f
React-logger: da1ebe05ae06eb6db4b162202faeafac4b435e77
react-native-ldk: 4ab3d26d5e1356313c572814289cc516dc18dd88
react-native-ldk: 7e754f4168e774326eaf2f0707843f5ce06f70bb
react-native-randombytes: 421f1c7d48c0af8dbcd471b0324393ebf8fe7846
react-native-tcp-socket: c1b7297619616b4c9caae6889bcb0aba78086989
React-NativeModulesApple: edb5ace14f73f4969df6e7b1f3e41bef0012740f
Expand Down

0 comments on commit 8852dc7

Please sign in to comment.