dev #17

Merged
sujiba merged 6 commits from dev into main 2024-09-17 12:04:13 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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 && \