Update hsd docker file to point to new commit

This commit is contained in:
Matthew Sevey 2021-09-03 10:37:40 -04:00
parent 409cceea24
commit 343fc6286f
No known key found for this signature in database
GPG Key ID: 9ADDD344F13057F6
2 changed files with 3 additions and 4 deletions

View File

@ -103,9 +103,8 @@ services:
build: build:
context: ./docker/handshake context: ./docker/handshake
dockerfile: Dockerfile dockerfile: Dockerfile
# Uncomment this line if you need to migrate the handshake db for the chain # Migration.
# migration. For new portal set ups this line does not appear to be needed. command: --chain-migrate=1 --wallet-migrate=1
# command: --chain-migrate=1 --wallet-migrate=1
container_name: handshake container_name: handshake
restart: unless-stopped restart: unless-stopped
logging: *default-logging logging: *default-logging

View File

@ -5,7 +5,7 @@ WORKDIR /opt/hsd
RUN apk update && apk add bash unbound-dev gmp-dev g++ gcc make python2 git RUN apk update && apk add bash unbound-dev gmp-dev g++ gcc make python2 git
# Checkout a specific commit until Handshake releases 2.4.0 then we should switch to that tag. # Checkout a specific commit until Handshake releases 2.4.0 then we should switch to that tag.
RUN git clone https://github.com/handshake-org/hsd.git /opt/hsd && \ RUN git clone https://github.com/handshake-org/hsd.git /opt/hsd && \
cd /opt/hsd && git checkout 3870234780240faf571426e790ea412dc6592622 && cd - cd /opt/hsd && git checkout 6f0927db32723d6320c8bff255a6ccf70b2ccd32 && cd -
RUN npm install --production RUN npm install --production
ENV PATH="${PATH}:/opt/hsd/bin:/opt/hsd/node_modules/.bin" ENV PATH="${PATH}:/opt/hsd/bin:/opt/hsd/node_modules/.bin"