Skip to content

Commit

Permalink
Updating for new RGB Node release (v0.1)
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Oct 21, 2020
1 parent 37acab3 commit 0aad29e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 5 additions & 3 deletions Dockerfile/rgb-node/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
ARG BUILDER_DIR=/srv/rgb


FROM rustlang/rust:nightly-slim as builder
FROM rust:1.47.0-slim-buster as builder

ARG SRC_DIR=/usr/local/src/rgb
ARG BUILDER_DIR
ARG VERSION=0.1.0-rc.2
ARG VERSION=0.1.0

RUN apt-get update \
&& apt-get -y install --no-install-recommends \
build-essential cmake git libpq-dev libssl-dev libzmq3-dev pkg-config
build-essential cmake git pkg-config \
libpq-dev libssl-dev libzmq3-dev libsqlite3-dev

WORKDIR "$SRC_DIR"

Expand All @@ -33,6 +34,7 @@ ARG USER=rgbd

RUN apt-get update \
&& apt-get -y install --no-install-recommends \
libsqlite3-0 \
libssl1.1 \
tini \
&& apt-get clean \
Expand Down
3 changes: 1 addition & 2 deletions docker-compose/signet/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ services:

rgbd-signet:
container_name: rgbd-signet
image: lnpbp/rgbd:0.1.0-rc1
image: lnpbp/rgbd:latest
restart: unless-stopped
depends_on:
- bitcoind-signet
Expand All @@ -81,7 +81,6 @@ services:
FUNGIBLED_RPC_ENDPOINT: "lnp://{node_id}@0.0.0.0:13015"
command:
- "-vvvv"
# - "--network signet"
ports:
- 13015:13015
volumes:
Expand Down

0 comments on commit 0aad29e

Please sign in to comment.