[CI/CD][Fixed] dev images creation

- The docker files were using master instead of dev branch
This commit is contained in:
Salvador E. Tropea 2022-10-21 14:15:25 -03:00
parent 417dbadcd2
commit f54e791bb7
2 changed files with 6 additions and 6 deletions

View File

@ -5,10 +5,10 @@ LABEL Description="KiCad 5 with KiBot and other automation scripts"
RUN dpkg --remove kicost kibot && \
apt-get update && \
apt-get -y install --no-install-recommends python3-pip unzip curl python3-setuptools python3-wheel && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \
unzip pp.zip && \
pip3 install --no-compile KiBot-master/ && \
rm -rf KiBot-master pp.zip && \
pip3 install --no-compile KiBot-dev/ && \
rm -rf KiBot-dev pp.zip && \
curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \
unzip pp.zip && \
pip3 install KiCost-master/ && \

View File

@ -5,10 +5,10 @@ LABEL Description="KiCad 6 with KiBot and other automation scripts"
RUN dpkg --remove kicost kibot && \
apt-get update && \
apt-get -y install --no-install-recommends -t bullseye-backports python3-pip unzip curl python3-setuptools python3-wheel && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/master --output pp.zip && \
curl https://codeload.github.com/INTI-CMNB/KiBot/zip/refs/heads/dev --output pp.zip && \
unzip pp.zip && \
pip3 install --no-compile KiBot-master/ && \
rm -rf KiBot-master pp.zip && \
pip3 install --no-compile KiBot-dev/ && \
rm -rf KiBot-dev pp.zip && \
curl https://codeload.github.com/hildogjr/KiCost/zip/refs/heads/master --output pp.zip && \
unzip pp.zip && \
pip3 install KiCost-master/ && \