From 3c33218f83bee0661289fdec3e8631aa7cd6174c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=C3=89lo=C3=AFs?= <c@elo.tf>
Date: Sun, 11 Oct 2020 19:33:40 +0000
Subject: [PATCH] Remove yarn and add cmake

---
 Dockerfile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 79a08cd..f274d6d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -14,7 +14,7 @@ RUN apt-get update && \
 	curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
 	echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
 	apt-get update && \
-	apt-get install -y build-essential yarn python-minimal zip libtool autoconf automake && \
+	apt-get install -y build-essential yarn python-minimal zip libtool autoconf automake cmake && \
 	apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
 
 # Create compiling user
@@ -22,11 +22,7 @@ RUN mkdir /duniter && \
 	adduser --system --group --quiet --shell /bin/bash --home /duniter duniter && \
 	chown duniter:duniter /duniter
 WORKDIR /duniter
-
-# Install Yarn
 ADD . /duniter
-RUN chmod +x install_yarn.sh
-RUN ./install_yarn.sh
 
 # Load NVM
 ENV NVM_DIR "/duniter/.nvm"
-- 
GitLab