Skip to content

Commit b733e18

Browse files
committed
Updating to fusiondirectory 1.3
1 parent ccd3593 commit b733e18

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
FROM debian:testing
22

33
RUN DEBIAN_FRONTEND=noninteractive apt-get update; \
4-
apt-get install -y gnupg2 patch;
4+
apt-get install -y gnupg2 patch ca-certificates;
55

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 && \
911
apt-get update
1012

1113
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apache2 dumb-init \

0 commit comments

Comments
 (0)