File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change 1
1
FROM debian:testing
2
2
3
3
RUN DEBIAN_FRONTEND=noninteractive apt-get update; \
4
- apt-get install -y gnupg2 patch;
4
+ apt-get install -y gnupg2 patch ca-certificates ;
5
5
6
- RUN apt-key adv --keyserver hkp://pgp.surfnet.nl:80 --recv-keys 0xD744D55EACDA69FF && \
7
- echo "deb http://repos.fusiondirectory.org/fusiondirectory-releases/fusiondirectory-1.2/debian-jessie jessie main" > /etc/apt/sources.list.d/fusiondirectory-jessie.list && \
8
- echo "deb http://repos.fusiondirectory.org/fusiondirectory-extra/debian-jessie jessie main" >> /etc/apt/sources.list.d/fusiondirectory-jessie.list && \
6
+ RUN gpg --keyserver keys.gnupg.net --recv-key 0xD744D55EACDA69FF && \
7
+ gpg --export -a
"FusionDirectory Project Signing Key <[email protected] >" > FD-archive-key && \
8
+ apt-key add FD-archive-key && \
9
+ echo "deb http://repos.fusiondirectory.org/fusiondirectory-current/debian-stretch stretch main" > /etc/apt/sources.list.d/fusiondirectory-stretch.list && \
10
+ echo "deb http://repos.fusiondirectory.org/fusiondirectory-extra/debian-stretch stretch main" >> /etc/apt/sources.list.d/fusiondirectory-stretch.list && \
9
11
apt-get update
10
12
11
13
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apache2 dumb-init \
You can’t perform that action at this time.
0 commit comments