forked from debops/debops
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
65 lines (54 loc) · 1.88 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
64
65
# Set up an Ansible Controller with DebOps support as a Docker container
#
# Copyright (C) 2017-2019 Maciej Delmanowski <[email protected]>
# Copyright (C) 2017-2019 DebOps <https://debops.org/>
# SPDX-License-Identifier: GPL-3.0-or-later
# Basic usage:
#
# docker build -t debops .
# docker run --name <container> -h controller.example.org -i -t debops
#
# cd src/controller
# debops common --diff
FROM debian:buster-slim
LABEL maintainer="Maciej Delmanowski <[email protected]>" \
project="DebOps" homepage="https://debops.org/"
RUN apt-get -q update \
&& DEBIAN_FRONTEND=noninteractive apt-get \
--no-install-recommends -yq install \
iproute2 \
iputils-ping \
levee \
openssh-client \
python3-apt \
python3-distro \
python3-dnspython \
python3-future \
python3-ldap \
python3-pip \
python3-wheel \
python3-setuptools \
python3-cryptography \
procps \
sudo \
tree \
&& pip3 install \
debops[ansible] \
&& 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
# Docker does not set expected environment variables by default
# Ref: https://stackoverflow.com/questions/54411218/
ENV USER ansible
# Add contents of the DebOps monorepo to the container
# with the right permissions
COPY --chown=ansible:ansible . .local/share/debops/debops
ENTRYPOINT ["/home/ansible/.local/share/debops/debops/lib/docker/docker-entrypoint"]
CMD ["/bin/bash"]