fetching git without history was implemented some time ago directly in gclient, while to bypass the upload of statistics to google, autoninja should no longer be used (use ninja directly)
16 lines
213 B
Docker
16 lines
213 B
Docker
ARG VERSION
|
|
|
|
FROM uazo/build-deps:$VERSION
|
|
ARG VERSION
|
|
ENV VERSION=$VERSION
|
|
|
|
#USER lg
|
|
WORKDIR /home/lg/working_dir
|
|
|
|
COPY prepare-build.sh .
|
|
|
|
RUN sudo chmod +x ./prepare-build.sh \
|
|
&& \
|
|
./prepare-build.sh
|
|
|