Skip to content

Commit 7529fdb

Browse files
committed
need aarch dockefile
1 parent e367e32 commit 7529fdb

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Dockerfile.aarch64

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# syntax=docker/dockerfile:1
2+
FROM ghcr.io/linuxserver/baseimage-selkies:arm64v8-debianbookworm
3+
4+
# set version label
5+
ARG BUILD_DATE
6+
ARG VERSION
7+
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
8+
LABEL maintainer="thelamer"
9+
10+
# title
11+
ENV TITLE=Dolphin
12+
13+
RUN \
14+
echo "**** add icon ****" && \
15+
curl -o \
16+
/usr/share/selkies/www/icon.png \
17+
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/dolphin-logo.png && \
18+
echo "**** install packages ****" && \
19+
apt-get update && \
20+
apt-get install -y --no-install-recommends \
21+
dolphin-emu && \
22+
echo "**** cleanup ****" && \
23+
printf \
24+
"Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" \
25+
> /build_version && \
26+
apt-get autoclean && \
27+
rm -rf \
28+
/config/.cache \
29+
/var/lib/apt/lists/* \
30+
/var/tmp/* \
31+
/tmp/*
32+
33+
# add local files
34+
COPY /root /
35+
36+
# ports and volumes
37+
EXPOSE 3000
38+
39+
VOLUME /config

0 commit comments

Comments
 (0)