[CI/CD][Fixed] dev images creation
- The docker files were using master instead of dev branch
This commit is contained in:
parent
417dbadcd2
commit
f54e791bb7
|
|
@ -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/ && \
|
||||
|
|
|
|||
|
|
@ -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/ && \
|
||||
|
|
|
|||
Loading…
Reference in New Issue