Skip to content

Commit a069bef

Browse files
committed
ci: docker: remove source repos from fih-test
Update Dockerfile to only build a distro and required tooling, avoiding adding source repositories, including tfm and mcuboot, so that it can be reused without the need to rebuild all the time. This should allow pushing the image under mcuboot/fih-test and pulling+caching in Travis. Signed-off-by: Fabio Utzig <fabio.utzig@nordicsemi.no>
1 parent 48a4ec3 commit a069bef

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

ci/fih_test_docker/Dockerfile ci/fih_test_docker/docker-build/Dockerfile

+4-15
Original file line numberDiff line numberDiff line change
@@ -31,24 +31,13 @@ RUN apt-get update && \
3131
RUN \
3232
# installing python packages
3333
python3 -m pip install \
34-
imgtool==1.6.0 \
34+
imgtool==1.7.0 \
3535
Jinja2==2.10 \
3636
PyYAML==3.12 \
3737
pyasn1==0.1.9
3838

39-
# Clone TF-M and dependencies
40-
RUN mkdir -p /root/work/tfm &&\
41-
cd /root/work/tfm &&\
42-
git clone https://git.trustedfirmware.org/TF-M/trusted-firmware-m.git &&\
43-
cd trusted-firmware-m &&\
44-
git checkout 8501b37db8e038ce39eb7f1039a514edea92c96e &&\
45-
cd .. &&\
46-
mkdir mcuboot
47-
48-
# Copy the test execution script to the image
49-
COPY execute_test.sh /root
50-
# copy the MCUBoot under test to the image
51-
COPY mcuboot /root/work/tfm/mcuboot
39+
# Add tfm work directory
40+
RUN mkdir -p /root/work/tfm
5241

5342
# run the command
54-
CMD ["bash"]
43+
CMD ["bash"]

ci/fih_test_docker/build.sh ci/fih_test_docker/docker-build/build.sh

-1
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,3 @@ export LANG=C
2727

2828
image=mcuboot/fih-test
2929
docker build --pull --tag=$image .
30-
echo $image > .docker-tag

0 commit comments

Comments
 (0)