6 Commits
master ... main

Author SHA1 Message Date
ea0b79582f Merge branch 'main' of https://github.com/CUBETIQ/calpine-os-linux 2023-08-27 13:15:17 +07:00
ecfc5dab1b Upgrade alpine to 3.18.3 2023-08-27 13:14:02 +07:00
Sambo Chea
53a1e8db0d Merge pull request #1 from CUBETIQ/renovate/configure
Configure Renovate
2023-03-22 09:15:10 +07:00
renovate[bot]
164849699d Add renovate.json 2023-01-05 17:00:30 +00:00
419d03fa43 Updated alpine linux to 3.16 2022-09-27 20:58:24 +07:00
83355f79ed Verify rootfs hash 2022-09-27 20:56:49 +07:00
3 changed files with 10 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
DOCKER_IMAGE_NAME = cubetiq/calpine-os-linux
DOCKER_IMAGE_SIZE = $(shell docker images --format "{{.Repository}} {{.Size}}" | grep $(DOCKER_IMAGE_NAME) | cut -d\ -f2)
DOCKER_IMAGE=${DOCKER_IMAGE_NAME}:3.16
DOCKER_IMAGE=${DOCKER_IMAGE_NAME}:3.18.3
build:
./src/build.sh

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:base"
]
}

View File

@@ -10,8 +10,8 @@ set -ex
# Default args
DOCKER_IMAGE_NAME=${DOCKER_IMAGE_NAME:-calpine-os-linux}
DOCKER_USERNAME="${DOCKER_USERNAME:-cubetiq}"
ALPINE_VERSION="${ALPINE_VERSION:-3.16.2}"
ALPINE_MAKE_ROOTFS_VERSION="${ALPINE_MAKE_ROOTFS_VERSION:-0.6.1}"
ALPINE_VERSION="${ALPINE_VERSION:-3.18.3}"
ALPINE_MAKE_ROOTFS_VERSION="${ALPINE_MAKE_ROOTFS_VERSION:-0.7.0}"
PACKAGES="apk-tools ca-certificates ssl_client"
MKROOTFS="/tmp/alpine-make-rootfs"
@@ -28,7 +28,7 @@ $PRE_INSTALL
# Build from alpine rootfs
# Download rootfs builder and verify it.
wget https://raw.githubusercontent.com/alpinelinux/alpine-make-rootfs/v${ALPINE_MAKE_ROOTFS_VERSION}/alpine-make-rootfs -O "$MKROOTFS"
echo "c9cfea712709df162f4dcf26e2b1422aadabad43 $MKROOTFS" | sha1sum -c -
echo "e09b623054d06ea389f3a901fd85e64aa154ab3a $MKROOTFS" | sha1sum -c -
chmod +x ${MKROOTFS}
sudo ${MKROOTFS} --mirror-uri http://dl-2.alpinelinux.org/alpine \