22 lines
344 B
Docker
Raw Normal View History

2021-07-10 09:27:09 +02:00
ARG BROMITE_SHA
2021-06-19 09:46:24 +00:00
2021-07-10 09:27:09 +02:00
FROM uazo/bromite:$BROMITE_SHA
2021-06-19 09:46:24 +00:00
2021-07-12 20:35:56 +02:00
USER lg
2021-07-12 07:52:47 +02:00
WORKDIR /home/lg/working_dir
2021-06-19 09:46:24 +00:00
COPY pre-start.sh .
COPY start-build.sh .
COPY goma_auth.py .
COPY casupload .
2021-06-30 12:44:14 +00:00
COPY build_args.gni .
2021-06-19 09:46:24 +00:00
RUN sudo chmod +x ./start-build.sh \
&& \
sudo chmod +x ./pre-start.sh \
&& \
2021-07-30 09:45:18 +02:00
sudo chmod 775 ./goma_auth.py \
&& \
./pre-start.sh
2021-06-19 09:46:24 +00:00