bromite-buildtools/images/bromite-build/Dockerfile
2021-06-30 12:44:14 +00:00

25 lines
362 B
Docker

ARG VERSION
FROM uazo/bromite:$VERSION
ARG VERSION
ENV VERSION=$VERSION
USER lg
COPY pre-start.sh .
COPY start-build.sh .
COPY goma_auth.py .
COPY casupload .
COPY build_args.gni .
RUN sudo chmod +x ./start-build.sh \
&& \
sudo chmod +x ./pre-start.sh \
&& \
sudo chmod 775 ./goma_auth.py \
&& \
./pre-start.sh
CMD ./start-build.sh