Skip to content

Commit f1550aa

Browse files
committed
Update ARM for 22.04
1 parent 35457b3 commit f1550aa

File tree

1 file changed

+25
-11
lines changed

1 file changed

+25
-11
lines changed

arm.Dockerfile

Lines changed: 25 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,31 @@
1-
FROM arm32v7/ubuntu:18.04
2-
MAINTAINER Fmstrat <[email protected]>
1+
FROM arm32v7/ubuntu:22.04
32

43
ENV DEBIAN_FRONTEND noninteractive
54

6-
RUN apt-get update && apt-get upgrade -y
5+
RUN \
6+
apt-get update &&\
7+
apt-get install -y \
8+
pkg-config \
9+
attr \
10+
acl \
11+
samba \
12+
smbclient \
13+
ldap-utils \
14+
winbind \
15+
libnss-winbind \
16+
libpam-winbind \
17+
krb5-user \
18+
krb5-kdc \
19+
supervisor \
20+
openvpn \
21+
inetutils-ping \
22+
ntp &&\
23+
apt-get clean autoclean &&\
24+
apt-get autoremove --yes &&\
25+
rm -rf /var/lib/{apt,dpkg,cache,log}/ &&\
26+
rm -fr /tmp/* /var/tmp/*
727

8-
# Install all apps
9-
# The third line is for multi-site config (ping is for testing later)
10-
RUN apt-get install -y pkg-config
11-
RUN apt-get install -y attr acl samba smbclient ldap-utils winbind libnss-winbind libpam-winbind krb5-user krb5-kdc supervisor
12-
RUN apt-get install -y openvpn inetutils-ping
13-
14-
# Set up script and run
1528
ADD init.sh /init.sh
16-
RUN chmod 755 /init.sh
29+
ADD domain.sh /domain.sh
30+
RUN chmod 755 /init.sh /domain.sh
1731
CMD /init.sh setup

0 commit comments

Comments
 (0)