mirror of
https://github.com/hassio-addons/addon-ubuntu-base.git
synced 2025-05-07 04:11:26 +00:00
Compare commits
9 commits
Author | SHA1 | Date | |
---|---|---|---|
|
f8692505e7 | ||
|
ea22ce677c | ||
|
fcff9a022f | ||
|
e50c601ec0 | ||
|
8f46255692 | ||
|
3de3e34968 | ||
|
9968258977 | ||
|
b39b0763fe | ||
|
ef5680510e |
4 changed files with 15 additions and 10 deletions
7
.github/renovate.json
vendored
7
.github/renovate.json
vendored
|
@ -6,8 +6,9 @@
|
|||
"labels": ["dependencies", "no-stale"],
|
||||
"commitMessagePrefix": "⬆️",
|
||||
"commitMessageTopic": "{{depName}}",
|
||||
"regexManagers": [
|
||||
"customManagers": [
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$", "/build.yaml$"],
|
||||
"matchStringsStrategy": "any",
|
||||
"matchStrings": [
|
||||
|
@ -17,6 +18,7 @@
|
|||
"datasourceTemplate": "docker"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG BASHIO_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
@ -26,6 +28,7 @@
|
|||
"versioningTemplate": "semver"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG S6_OVERLAY_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
@ -36,6 +39,7 @@
|
|||
"extractVersionTemplate": "^v(?<version>.*)$"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStrings": [
|
||||
"ARG TEMPIO_VERSION=[\"']?(?<currentValue>.+?)[\"']?\\s+"
|
||||
|
@ -45,6 +49,7 @@
|
|||
"versioningTemplate": "loose"
|
||||
},
|
||||
{
|
||||
"customType": "regex",
|
||||
"fileMatch": ["/Dockerfile$"],
|
||||
"matchStringsStrategy": "any",
|
||||
"matchStrings": [
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# MIT License
|
||||
|
||||
Copyright (c) 2018-2024 Franck Nijhof
|
||||
Copyright (c) 2018-2025 Franck Nijhof
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -31,7 +31,7 @@ Home Assistant Community Add-ons.
|
|||
While Home Assistant provides base images, the images provided by this
|
||||
repository contain some extras:
|
||||
|
||||
- Based on Ubuntu Bionic (slim)
|
||||
- Based on the latest Ubuntu LTS
|
||||
- Adds [s6] as a process supervisor.
|
||||
- Adds `jq` & `curl`, since every add-on uses them.
|
||||
- Adds Docker [Label Schema][label-schema] support.
|
||||
|
@ -96,7 +96,7 @@ our [GitHub Repository][repository].
|
|||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2018-2024 Franck Nijhof
|
||||
Copyright (c) 2018-2025 Franck Nijhof
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -138,7 +138,7 @@ SOFTWARE.
|
|||
[issue]: https://github.com/hassio-addons/addon-ubuntu-base/issues
|
||||
[label-schema]: http://label-schema.org/
|
||||
[license-shield]: https://img.shields.io/github/license/hassio-addons/addon-ubuntu-base.svg
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2025.svg
|
||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-production%20ready-brightgreen.svg
|
||||
|
|
|
@ -25,17 +25,17 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
|
|||
|
||||
# Install base system
|
||||
ARG BUILD_ARCH=amd64
|
||||
ARG BASHIO_VERSION="v0.16.2"
|
||||
ARG S6_OVERLAY_VERSION="3.2.0.0"
|
||||
ARG TEMPIO_VERSION="2021.09.0"
|
||||
ARG BASHIO_VERSION="v0.16.3"
|
||||
ARG S6_OVERLAY_VERSION="3.2.0.2"
|
||||
ARG TEMPIO_VERSION="2024.11.2"
|
||||
RUN \
|
||||
apt-get update \
|
||||
\
|
||||
&& apt-get install -y --no-install-recommends \
|
||||
ca-certificates=20240203 \
|
||||
curl=8.5.0-2ubuntu10.1 \
|
||||
curl=8.5.0-2ubuntu10.6 \
|
||||
jq=1.7.1-3build1 \
|
||||
tzdata=2024a-2ubuntu1 \
|
||||
tzdata=2024b-0ubuntu0.24.04.1 \
|
||||
xz-utils=5.6.1+really5.4.5-1 \
|
||||
\
|
||||
&& S6_ARCH="${BUILD_ARCH}" \
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue