ci: set env CI to true (#418)

This commit is contained in:
Shohei Ueda 2020-07-26 00:03:59 +09:00 committed by GitHub
parent 24d40fe124
commit eca3d9d25e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -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" ]