-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathDockerfile
More file actions
54 lines (39 loc) · 1.18 KB
/
Dockerfile
File metadata and controls
54 lines (39 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
FROM binhex/arch-base:latest
LABEL org.opencontainers.image.authors="binhex"
LABEL org.opencontainers.image.source="https://github.com/binhex/arch-deluge"
# app name from buildx arg
ARG APPNAME
# release tag name from buildx arg
ARG RELEASETAG
# arch from buildx --platform, e.g. amd64
ARG TARGETARCH
# additional files
##################
# add supervisor conf file for app
ADD build/*.conf /etc/supervisor/conf.d/
# add install bash script
ADD build/root/*.sh /root/
# add bash script to run deluge
ADD run/nobody/*.sh /home/nobody/
# install app
#############
# make executable and run bash scripts to install app
RUN chmod +x /root/*.sh && \
/bin/bash /root/install.sh "${APPNAME}" "${RELEASETAG}" "${TARGETARCH}"
# docker settings
#################
# set environment variables for user nobody
ENV HOME=/home/nobody
# healthcheck
#############
# ensure internet connectivity, used primarily when sharing network with other containers
HEALTHCHECK \
--interval=2m \
--timeout=2m \
--retries=3 \
--start-period=2m \
CMD /usr/local/bin/system/scripts/docker/healthcheck.sh || exit 1
# set permissions
#################
# run script to set uid, gid and permissions
CMD ["/bin/bash", "init.sh"]