From d6658a300cc1be0373de55af036fb84dd5d4e05b Mon Sep 17 00:00:00 2001 From: Adam Malcontenti-Wilson Date: Mon, 20 Aug 2018 20:22:25 -0700 Subject: [PATCH] Install docker into Dockerfile --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 58c60497b8..0a1f89d05d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM ruby:2.5.1-slim RUN apt-get update && apt-get install -y build-essential default-libmysqlclient-dev libpq-dev libsqlite3-dev wget apt-transport-https git curl RUN curl -sL https://deb.nodesource.com/setup_6.x | bash - && apt-get install nodejs -y +RUN curl -fsSL https://get.docker.com | bash - WORKDIR /app