mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-21 02:40:09 +00:00
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 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"
|