From 495403864fc72261bec5483ca4ab9922109ecac6 Mon Sep 17 00:00:00 2001 From: Expand-sys Date: Tue, 13 Jul 2021 07:50:18 +1000 Subject: [PATCH] pulling from github repo now so only docker file needed --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9aabd40..3f2ff89 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ FROM alpine:3.11 -WORKDIR /CCash +WORKDIR / -RUN apk update && apk add cmake g++ make protobuf jsoncpp-dev openssl libressl-dev zlib-dev util-linux-dev libtool autoconf automake python3 +RUN apk update && apk add git cmake g++ make protobuf jsoncpp-dev openssl libressl-dev zlib-dev util-linux-dev libtool autoconf automake python3 -COPY . . +RUN git clone --recurse-submodules https://github.com/EntireTwix/CCash.git --branch Refractor RUN mkdir /CCash/build WORKDIR /CCash/build RUN cmake -DDROGON_CONFIG_LOC=\"\/CCash\/config\/config.json\" -DUSER_SAVE_LOC=\"\/CCash\/config\/users.json\" ..