Docker file updates
This commit is contained in:
parent
fe6d7a14b1
commit
844db855fa
1 changed files with 5 additions and 3 deletions
|
|
@ -2,10 +2,12 @@ FROM ubuntu:18.04
|
||||||
MAINTAINER PeerPlays Blockchain Standards Association
|
MAINTAINER PeerPlays Blockchain Standards Association
|
||||||
|
|
||||||
ENV LANG=en_US.UTF-8
|
ENV LANG=en_US.UTF-8
|
||||||
ENV DEBIAN_FRONTEND=noninteractive
|
ENV LANGUAGE en_US.UTF-8
|
||||||
|
ENV LC_ALL en_US.UTF-8
|
||||||
|
|
||||||
RUN \
|
RUN \
|
||||||
apt-get update -y && \
|
apt-get update -y && \
|
||||||
apt-get install -y \
|
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
||||||
autoconf \
|
autoconf \
|
||||||
build-essential \
|
build-essential \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
|
|
@ -49,7 +51,6 @@ WORKDIR /peerplays-core
|
||||||
|
|
||||||
# Compile Boost
|
# Compile Boost
|
||||||
RUN \
|
RUN \
|
||||||
git submodule update --init --recursive && \
|
|
||||||
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
||||||
wget -c 'http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.gz/download' -O boost_1_67_0.tar.gz &&\
|
wget -c 'http://sourceforge.net/projects/boost/files/boost/1.67.0/boost_1_67_0.tar.gz/download' -O boost_1_67_0.tar.gz &&\
|
||||||
tar -zxvf boost_1_67_0.tar.gz && \
|
tar -zxvf boost_1_67_0.tar.gz && \
|
||||||
|
|
@ -61,6 +62,7 @@ RUN \
|
||||||
# Compile Peerplays
|
# Compile Peerplays
|
||||||
RUN \
|
RUN \
|
||||||
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
BOOST_ROOT=$HOME/boost_1_67_0 && \
|
||||||
|
git submodule update --init --recursive && \
|
||||||
mkdir build && \
|
mkdir build && \
|
||||||
mkdir build/release && \
|
mkdir build/release && \
|
||||||
cd build/release && \
|
cd build/release && \
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue