ci: Add workflow for developing container (#231)

* ci: Add workflow for developing container
* ci: Add CI tasks to Makefile
* chore: Add RUNNER_TEMP to Dockerfile
* deps: Bump git from 2.25.0 to 2.26.0
This commit is contained in:
Shohei Ueda
2020-03-27 19:07:48 +09:00
committed by GitHub
parent e470a760d3
commit b71ad2d014
4 changed files with 53 additions and 6 deletions

View File

@@ -13,7 +13,7 @@ RUN apt-get update && \
rm -rf /var/lib/apt/lists/*
WORKDIR /git
ENV GIT_VERSION="2.25.0"
ENV GIT_VERSION="2.26.0"
RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \
tar -zxf "./v${GIT_VERSION}.tar.gz" && \
rm "./v${GIT_VERSION}.tar.gz" && \
@@ -24,5 +24,6 @@ RUN wget -q "https://github.com/git/git/archive/v${GIT_VERSION}.tar.gz" && \
make install
WORKDIR /repo
ENV RUNNER_TEMP="/tmp"
CMD [ "bash" ]