File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -316,10 +316,12 @@ pipeline {
316316 docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
317317 apk info > packages && \
318318 apk info -v > versions && \
319- paste -d " " packages versions > /tmp/package_versions.txt'
319+ paste -d " " packages versions > /tmp/package_versions.txt && \
320+ chmod 777 /tmp/package_versions.txt'
320321 elif [ "${DIST_IMAGE}" == "ubuntu" ]; then
321322 docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\
322- apt -qq list --installed | awk "{print \$ 1,\$ 2}" > /tmp/package_versions.txt'
323+ apt -qq list --installed | awk "{print \$ 1,\$ 2}" > /tmp/package_versions.txt && \
324+ chmod 777 /tmp/package_versions.txt'
323325 fi
324326 if [ "$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 )" != "${PACKAGE_TAG}" ]; then
325327 git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO}
Original file line number Diff line number Diff line change @@ -39,9 +39,9 @@ The architectures supported by this image are:
3939
4040| Architecture | Tag |
4141| :----: | --- |
42- | x86-64 | tbc |
43- | arm64 | tbc |
44- | armhf | tbc |
42+ | x86-64 | amd64-latest |
43+ | arm64 | arm64v8-latest |
44+ | armhf | arm32v6-latest |
4545
4646## Usage
4747
You can’t perform that action at this time.
0 commit comments