File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # VCS / GitHub metadata — not part of any build
2+ .git
3+ .gitignore
4+ .github
5+ .dockerignore
6+
7+ # Repo docs / licensing — not COPY'd into the image
8+ * .md
9+ LICENSE
10+
11+ # OS / editor noise
12+ .DS_Store
13+ Thumbs.db
14+ * .swp
15+ * ~
16+ .vscode
17+ .idea
18+
19+ # Local artifacts
20+ * .log
21+ * .bak
Original file line number Diff line number Diff line change 55
66version : 2
77updates :
8- - package-ecosystem : " docker" # See documentation for possible values
9- directory : " /" # Location of package manifests
8+ - package-ecosystem : " docker" # base image versions in Dockerfile
9+ directory : " /"
10+ schedule :
11+ interval : " weekly"
12+ - package-ecosystem : " github-actions" # actions/checkout, docker/build-push-action, etc.
13+ directory : " /"
1014 schedule :
1115 interval : " weekly"
Original file line number Diff line number Diff line change @@ -17,8 +17,11 @@ ARG sdl3_ref
1717ARG sdl3_image_repo
1818ARG sdl3_image_ref
1919
20- LABEL maintainer="Dimitris Panokostas"
21- LABEL description="Image with the requirements to cross-compile Amiberry for Debian AARCH64 (ARM64)"
20+ LABEL org.opencontainers.image.title="Amiberry build environment (Debian aarch64)"
21+ LABEL org.opencontainers.image.description="Image with the requirements to cross-compile Amiberry for Debian AARCH64 (ARM64)"
22+ LABEL org.opencontainers.image.authors="Dimitris Panokostas"
23+ LABEL org.opencontainers.image.source="https://github.com/BlitterStudio/amiberry-docker-aarch64"
24+ LABEL org.opencontainers.image.licenses="GPL-3.0"
2225
2326RUN dpkg --add-architecture arm64 && \
2427 apt-get update && \
You can’t perform that action at this time.
0 commit comments