-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
FROM debian:testing | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get update; \ | ||
apt-get install -y gnupg2 patch; | ||
apt-get install -y gnupg2 patch ca-certificates; | ||
|
||
RUN apt-key adv --keyserver hkp://pgp.surfnet.nl:80 --recv-keys 0xD744D55EACDA69FF && \ | ||
echo "deb http://repos.fusiondirectory.org/fusiondirectory-releases/fusiondirectory-1.2/debian-jessie jessie main" > /etc/apt/sources.list.d/fusiondirectory-jessie.list && \ | ||
echo "deb http://repos.fusiondirectory.org/fusiondirectory-extra/debian-jessie jessie main" >> /etc/apt/sources.list.d/fusiondirectory-jessie.list && \ | ||
RUN gpg --keyserver keys.gnupg.net --recv-key 0xD744D55EACDA69FF && \ | ||
gpg --export -a "FusionDirectory Project Signing Key <[email protected]>" > FD-archive-key && \ | ||
apt-key add FD-archive-key && \ | ||
echo "deb http://repos.fusiondirectory.org/fusiondirectory-current/debian-stretch stretch main" > /etc/apt/sources.list.d/fusiondirectory-stretch.list && \ | ||
echo "deb http://repos.fusiondirectory.org/fusiondirectory-extra/debian-stretch stretch main" >> /etc/apt/sources.list.d/fusiondirectory-stretch.list && \ | ||
apt-get update | ||
|
||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y apache2 dumb-init \ | ||
|