Compare commits

..

No commits in common. "5694b7df8cd91a25970bf33a16f9ace2a44df9ee" and "d04a7875b4fdabf7f187aacca7bc00a70c6b4a52" have entirely different histories.

4 changed files with 12 additions and 20 deletions

View file

@ -3,20 +3,21 @@ FROM alpine:3.20.1
WORKDIR /clone-workspace WORKDIR /clone-workspace
RUN apk update && \ RUN apk update && \
apk upgrade && \ apk upgrade && \
apk add git && \ apk add git
git clone https://github.com/fernwerker/ownDynDNS.git RUN git clone https://github.com/fernwerker/ownDynDNS.git
# Build container to run the app # Build container to run the app
FROM php:8.3.9-apache FROM php:8.3.9-apache
WORKDIR /var/www/html WORKDIR /var/www/html
RUN apt-get update && \ RUN apt-get update -y && \
apt-get upgrade -y && \ apt-get upgrade -y && \
apt-get install --no-install-recommends -y \ apt-get install -y \
libxml2-dev && \ libxml2-dev
docker-php-ext-install soap && \ RUN docker-php-ext-install soap
apt-get clean && \ RUN apt-get clean -y
rm -rf /var/lib/apt/lists/*
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS /var/www/html COPY --from=0 /clone-workspace/ownDynDNS /var/www/html
COPY --chown=www-data:www-data --from=0 /clone-workspace/ownDynDNS/.htaccess.example /var/www/html/.htaccess COPY --from=0 /clone-workspace/ownDynDNS/.htaccess.example /var/www/html/.htaccess
RUN chown -R www-data:www-data /var/www/html/

View file

@ -2,14 +2,5 @@
"$schema": "https://docs.renovatebot.com/renovate-schema.json", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "extends": [
"local>homelab/renovate-config" "local>homelab/renovate-config"
],
"baseBranches": ["dev"],
"useBaseBranchConfig": "merge",
"packageRules": [
{
"description": "Automerge dependency updates",
"matchUpdateTypes": ["major", "minor", "patch", "pin", "digest"],
"automerge": true
}
] ]
} }