Initial dockerfiles

This commit is contained in:
uazo
2021-06-19 09:46:24 +00:00
parent 6a3724fb28
commit a669eb5f0c
22 changed files with 450 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
ARG VERSION
FROM localhost:5000/uazo/bromite:$VERSION
ARG VERSION
ENV VERSION=$VERSION
USER lg
COPY pre-start.sh .
COPY start-build.sh .
COPY goma_auth.py .
COPY casupload .
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