Skip to content

Commit

Permalink
Update base image to focal-1.2.0, and upgrade libs
Browse files Browse the repository at this point in the history
... at build time, and do not complain if /etc/bitshares exists already.
  • Loading branch information
abitmore committed Oct 28, 2022
1 parent db763c4 commit e3568f9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
FROM phusion/baseimage:focal-1.0.0
FROM phusion/baseimage:focal-1.2.0
MAINTAINER The bitshares decentralized organisation

ENV LANG=en_US.UTF-8
RUN \
apt-get update -y && \
apt-get update && \
apt-get upgrade -y -o Dpkg::Options::="--force-confold" && \
apt-get update && \
apt-get install -y \
g++ \
autoconf \
Expand Down Expand Up @@ -53,7 +55,7 @@ RUN \
install -s programs/witness_node/witness_node programs/genesis_util/get_dev_key programs/cli_wallet/cli_wallet /usr/local/bin && \
#
# Obtain version
mkdir /etc/bitshares && \
mkdir -p /etc/bitshares && \
git rev-parse --short HEAD > /etc/bitshares/version && \
cd / && \
rm -rf /bitshares-core
Expand Down

0 comments on commit e3568f9

Please sign in to comment.