diff --git a/Docker/yocto/Dockerfile b/Docker/yocto/Dockerfile index 2da676932..87f786716 100644 --- a/Docker/yocto/Dockerfile +++ b/Docker/yocto/Dockerfile @@ -19,7 +19,9 @@ WORKDIR /opt/poky ARG YOCTO_VERSION=kirkstone RUN git checkout -t origin/${YOCTO_VERSION} -b ${YOCTO_VERSION} && git pull -RUN git clone --single-branch --branch=master https://github.com/wolfssl/meta-wolfssl.git && \ +# This arg is to be able to force a rebuild starting from this line +ARG DUMMY=date +RUN DUMMY=${DUMMY} git clone --single-branch --branch=master https://github.com/wolfssl/meta-wolfssl.git && \ /bin/bash -c "source oe-init-build-env" && \ echo 'IMAGE_INSTALL:append = " wolfssl wolfclu wolfssh wolfmqtt wolftpm wolfclu "' >> /opt/poky/build/conf/local.conf && \ sed -i '/\/opt\/poky\/meta-poky \\/a \\t/opt/poky/meta-wolfssl \\' /opt/poky/build/conf/bblayers.conf diff --git a/Docker/yocto/buildAndPush.sh b/Docker/yocto/buildAndPush.sh index d76a603e8..8c749502c 100755 --- a/Docker/yocto/buildAndPush.sh +++ b/Docker/yocto/buildAndPush.sh @@ -11,9 +11,9 @@ fi NUM_FAILURES=0 CUR_DATE=$(date -u +%F) -for ver in kirkstone dunfell; do +for ver in kirkstone langdale scarthgap; do echo "Building wolfssl/yocto:${ver}-${CUR_DATE} as ${DOCKER_BUILD_OPTIONS}" - docker build -t wolfssl/yocto:${ver}-${CUR_DATE} --build-arg YOCTO_VERSION=${ver} -f Dockerfile "${WOLFSSL_DIR}/Docker/yocto" && \ + docker build -t wolfssl/yocto:${ver}-${CUR_DATE} --build-arg YOCTO_VERSION=${ver} --build-arg BUILD_DATE=${CUR_DATE} -f Dockerfile "${WOLFSSL_DIR}/Docker/yocto" && \ docker tag wolfssl/yocto:${ver}-${CUR_DATE} wolfssl/yocto:${ver}-latest if [ $? -eq 0 ]; then echo "Pushing containers to DockerHub"