From 7e47084c1287c57d841c3ed6779dbb6eb5442f2a Mon Sep 17 00:00:00 2001 From: Shohei Ueda <30958501+peaceiris@users.noreply.github.com> Date: Sat, 25 Jul 2020 23:57:25 +0900 Subject: [PATCH] ci: set env CI to true --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 96b68a4e8..996aa95c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,4 @@ ARG NODE_VERSION - FROM node:${NODE_VERSION}-buster-slim SHELL ["/bin/bash", "-l", "-c"] @@ -26,6 +25,8 @@ RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \ make all && \ make install +ENV CI="true" + WORKDIR /repo CMD [ "bash" ]