mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-28 14:30:13 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
16 lines
694 B
Docker
16 lines
694 B
Docker
# SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
# 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 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"
|