Update arm dockerfile and readme

This commit is contained in:
TheSpad 2024-01-16 15:16:36 +00:00
parent 56dfd10866
commit 2f61d5d228
No known key found for this signature in database
GPG key ID: 08F06191F4587860
2 changed files with 12 additions and 5 deletions

View file

@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
# set version label
ARG BUILD_DATE
@ -10,14 +10,17 @@ LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DA
LABEL maintainer="thespad"
# environment settings
ARG UNIFI_BRANCH="stable"
ARG UNIFI_BRANCH="stable" \
DEBIAN_FRONTEND="noninteractive"
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
apt-get update && \
apt-get install --no-install-recommends -y \
jsvc \
logrotate \
openjdk17-jre-headless && \
openjdk-17-jre-headless \
unzip && \
echo "**** install unifi ****" && \
if [ -z ${UNIFI_VERSION+x} ]; then \
UNIFI_VERSION=$(curl -sX GET http://dl.ui.com/unifi/debian/dists/${UNIFI_BRANCH}/ubiquiti/binary-amd64/Packages \
@ -32,8 +35,11 @@ RUN \
unzip /tmp/unifi.zip -d /usr/lib && \
mv /usr/lib/UniFi /usr/lib/unifi && \
echo "**** cleanup ****" && \
apt-get clean && \
rm -rf \
/tmp/*
/tmp/* \
/var/lib/apt/lists/* \
/var/tmp/*
# add local files
COPY root/ /

View file

@ -121,5 +121,6 @@ app_setup_block: |
# changelog
changelogs:
- { date: "16.01.24:", desc: "Install from zip package instead of deb." }
- { date: "17.10.23:", desc: "Add environment variables for TLS and authSource to support Atlas and new MongoDB versions." }
- { date: "05.09.23:", desc: "Initial release." }