Skip to content

Commit d82f69f

Browse files
Bot Updating Templated Files
1 parent 3a88f29 commit d82f69f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Jenkinsfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)