File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments