forked from debops/debops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
63 lines (52 loc) · 1.95 KB
/
Dockerfile
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
56
57
58
59
60
61
62
63
# Set up an Ansible Controller with DebOps support as a Docker container
#
# Copyright (C) 2017 Maciej Delmanowski <[email protected]>
# Copyright (C) 2017 DebOps project https://debops.org/
# Basic usage:
#
# docker build -t debops .
# docker run --name <container> -h controller.example.org -i -t debops
#
# cd src/controller
# debops --skip-tags role::ferm,role::sysctl,role::sshd,role::root_account,role::etc_services
#
# These roles currently have issues when executed against a Docker container:
# - debops.etc_services - destroys '/etc/services' file
# - debops.ferm - cannot configure sysctl
# - debops.sshd - daemon cannot be restarted
# - debops.sysctl - cannot configure sysctl
# - debops.root_account - cannot reconfigure root account
FROM debian:stretch-slim
LABEL maintainer="Maciej Delmanowski <[email protected]>" \
project="DebOps" homepage="https://debops.org/"
ENV DOCKER_ENVIRONMENT true
RUN apt-get -q update \
&& DEBIAN_FRONTEND=noninteractive apt-get \
--no-install-recommends -yq install \
iproute2 \
levee \
python-apt \
python-ldap \
python-pip \
python-wheel \
python-setuptools \
procps \
sudo \
tree \
&& pip install \
ansible \
debops \
&& echo "Cleaning up cache directories..." \
&& rm -rf /var/lib/apt/lists/* /var/cache/apt/archives/*.deb /root/.cache/*
RUN groupadd --system admins \
&& echo "%admins ALL = (ALL:ALL) NOPASSWD: SETENV: ALL" > /etc/sudoers.d/admins \
&& chmod 0440 /etc/sudoers.d/admins \
&& useradd --user-group --create-home --shell /bin/bash \
--home-dir /home/ansible --groups admins ansible
# Switch to the unprivileged user
USER ansible
WORKDIR /home/ansible
# Add contents of the DebOps monorepo to the container
COPY . .local/share/debops/debops
ENTRYPOINT ["/home/ansible/.local/share/debops/debops/lib/docker/docker-entrypoint"]
CMD ["/bin/bash"]