mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 06:20:14 +00:00
Signed-off-by: Erwan Hervé <erwan.herve@outlook.fr> Signed-off-by: Erwan Hervé <62173453+Erwan-loot@users.noreply.github.com> Co-authored-by: Simon L. <szaimen@e.mail.de>
13 lines
575 B
Docker
13 lines
575 B
Docker
# syntax=docker/dockerfile:latest
|
|
FROM alpine:3.23.4
|
|
|
|
RUN set -ex; \
|
|
apk upgrade --no-cache -a
|
|
|
|
LABEL org.opencontainers.image.title="Alpine for Nextcloud AIO"
|
|
org.opencontainers.image.description="Minimal Alpine Linux base image for Nextcloud All-in-One"
|
|
org.opencontainers.image.url="https://github.com/nextcloud/all-in-one"
|
|
org.opencontainers.image.source="https://github.com/nextcloud/all-in-one"
|
|
org.opencontainers.image.vendor="Nextcloud"
|
|
org.opencontainers.image.documentation="https://github.com/nextcloud/all-in-one/blob/main/readme.md"
|