Skip to content

Commit

Permalink
update base
Browse files Browse the repository at this point in the history
  • Loading branch information
jonashoechst committed Sep 5, 2024
1 parent ad1c2b4 commit cee8a2d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '3'
services:
pimod:
build: ./pimod
Expand Down
19 changes: 18 additions & 1 deletion tRackIT-OS.Pifile
Original file line number Diff line number Diff line change
@@ -1,10 +1,27 @@
# Set default ARCH
: ${ARCH:=arm64}

FROM "https://github.com/tRackIT-Systems/tsOS-Base/releases/download/2024.05.1/tsOS-Base-${ARCH}-2024.05.1.zip"
FROM "https://github.com/tRackIT-Systems/tsOS-Base/releases/download/2024.07.2/tsOS-Base-${ARCH}-2024.07.2.zip"
TO "tRackIT-OS-${ARCH}.img"
PUMP 300M

# Set os-release info
NAME="tRackIT-OS"
VERSION_ID=`git describe --tags --always || true`
VERSION_CODENAME=bookworm

RUN tee /etc/os-release <<EOF
PRETTY_NAME="$NAME $VERSION_ID ($VERSION_CODENAME)"
NAME=$NAME
VERSION_ID=$VERSION_ID
VERSION="$VERSION_ID ($VERSION_CODENAME)"
VERSION_CODENAME=bookworm
ID=debian
HOME_URL="https://trackit.systems/"
SUPPORT_URL="https://github.com/trackIT-Systems/tRackIT-OS"
BUG_REPORT_URL="https://github.com/trackIT-Systems/tRackIT-OS/issues"
EOF

# Install custom folders
INSTALL boot /boot
INSTALL etc /etc
Expand Down

0 comments on commit cee8a2d

Please sign in to comment.