forked from LinOTP/LinOTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile.builder
55 lines (47 loc) · 1.86 KB
/
Dockerfile.builder
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
55
# -*- coding: utf-8 -*-
#
# LinOTP - the open source solution for two factor authentication
# Copyright (C) 2016 - 2017 KeyIdentity GmbH
#
# This file is part of LinOTP server.
#
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU Affero General Public
# License, version 3, as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the
# GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
#
# E-mail: [email protected]
# Contact: www.linotp.org
# Support: www.keyidentity.com
#
#
# This container contains build dependencies for building linotp packages
FROM debian:jessie
ARG DEBIAN_MIRROR=deb.debian.org
RUN sed "s#http://deb\.debian\.org/#http://${DEBIAN_MIRROR}/#" \
< /etc/apt/sources.list > /etc/apt/sources.list.new && mv -f /etc/apt/sources.list.new /etc/apt/sources.list
RUN apt-get update && apt-get \
--no-install-recommends --yes install \
build-essential devscripts equivs libfile-fcntllock-perl
# Use the control files from the packages to install a list of packages needed for builds.
# We copy in just the control files at this point in order to make maximum use of
# docker's caching
COPY linotpd/src/debian/control packaging/deps/linotp/debian/
RUN for D in linotp ;\
do \
echo $D ;\
cd /packaging/deps/$D ;\
mk-build-deps --install --remove --tool "apt-get --yes --no-install-recommends" ;\
done
# The sources will be mounted at runtime into the volume /pkg/linotp
VOLUME /pkg/linotpsrc
WORKDIR /pkg/linotp