Compare commits

..

No commits in common. "master" and "0.2.2" have entirely different histories.

4 changed files with 10 additions and 10 deletions

View File

@ -21,7 +21,7 @@ Caddy base image with https://github.com/caddy-dns/duckdns[duckdns module] added
[source,shell]
----
docker build --build-arg CADDY_VERSION=2.8.4 -f ./caddy-duckdns.Dockerfile -t caddy-duckdns:2.8.4 .
docker build --build-arg VERSION=2.8.4 -f ./caddy-duckdns.Dockerfile -t caddy-duckdns:2.8.4 .
----
=== caddy-docker-ovh.Dockerfile
@ -39,5 +39,5 @@ Gitea base image (rootless) with https://docs.gitea.com/administration/external-
[source,shell]
----
docker build --build-arg GITEA_VERSION=1.22.1 -f ./gitea-external-renderers.Dockerfile -t gitea-external-renderers:1.22.1 .
docker build --build-arg VERSION=1.22.0 -f ./gitea-external-renderers.Dockerfile -t gitea-external-renderers:1.22.0 .
----

View File

@ -1,8 +1,8 @@
ARG CADDY_VERSION=latest
FROM arm64v8/caddy:${CADDY_VERSION}-builder AS builder
ARG VERSION=latest
FROM arm64v8/caddy:${VERSION}-builder AS builder
RUN xcaddy build \
--with github.com/caddy-dns/duckdns
FROM arm64v8/caddy:${CADDY_VERSION}
FROM arm64v8/caddy:${VERSION}
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

View File

@ -1,8 +1,8 @@
ARG CADDY_VERSION=latest
FROM caddy:${CADDY_VERSION}-builder AS builder
ARG VERSION=latest
FROM caddy:${VERSION}-builder AS builder
RUN xcaddy build \
--with github.com/caddy-dns/duckdns
FROM caddy:${CADDY_VERSION}
FROM caddy:${VERSION}
COPY --from=builder /usr/bin/caddy /usr/bin/caddy

View File

@ -1,5 +1,5 @@
ARG GITEA_VERSION=latest
FROM gitea/gitea:${GITEA_VERSION}-rootless
ARG VERSION=latest
FROM gitea/gitea:${VERSION}-rootless
USER root
RUN apk --no-cache add \