diff --git a/.forgejo/workflows/build_dev.yaml b/.forgejo/workflows/build_dev.yaml index e58b66f..9b66573 100644 --- a/.forgejo/workflows/build_dev.yaml +++ b/.forgejo/workflows/build_dev.yaml @@ -58,7 +58,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 with: - endpoint: tcp://forgejo-docker-in-docker-1:2375 + endpoint: tcp://docker-in-docker:2375 platforms: linux/amd64,linux/arm64,linux/arm/v7 - name: Build and push diff --git a/docker-build/Dockerfile b/docker-build/Dockerfile index b22d35e..d89a674 100755 --- a/docker-build/Dockerfile +++ b/docker-build/Dockerfile @@ -1,5 +1,5 @@ # Get latest app version -FROM alpine:3.20.2 +FROM alpine:3.20.3 WORKDIR /clone-workspace RUN apk update && \ apk upgrade && \ @@ -7,7 +7,7 @@ RUN apk update && \ git clone https://github.com/fernwerker/ownDynDNS.git # Build container to run the app -FROM php:8.3.10-apache +FROM php:8.3.11-apache WORKDIR /var/www/html RUN apt-get update && \