forked from fgoebel/toolset
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
65 lines (56 loc) · 2.21 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
FROM quay.io/pycontribs/python:3.8-slim-buster as toolset-builder
# Image above is just a mirror of ^ docker.io/python:3.8-slim-buster which we
# mirror in order to avoid docker pull limiting us.
# see https://pythonspeed.com/articles/base-image-python-docker-images/
LABEL maintainer="Ansible <[email protected]>"
ENV PATH="/opt/toolset/bin:$PATH"
ENV PIP_INSTALL_ARGS="--pre"
ENV PACKAGES="\
git \
gcc \
gnupg \
rsync \
ssh \
libyaml-dev \
"
COPY requirements.txt /tmp/requirements.txt
RUN \
apt-get update && \
apt-get install -y ${PACKAGES} && \
python -m venv /opt/toolset && \
python3 -m pip install \
${PIP_INSTALL_ARGS} -r /tmp/requirements.txt
# Final stage
FROM quay.io/pycontribs/python:3.8-slim-buster
ENV SHELL /bin/bash
ENV PYTHONDONTWRITEBYTECODE=1
ENV ANSIBLE_FORCE_COLOR=1
ENV PATH="/opt/toolset/bin:$PATH"
COPY --from=toolset-builder /opt/toolset /opt/toolset
RUN \
apt-get update && \
apt-get install -y --no-install-recommends curl git gnupg docker.io && \
# podman is missing from debian 10 but will be included in 11, so for the
# moment we install it from kubic repors.
# workaround for https://github.com/containers/podman/issues/8665
echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list && \
echo 'deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/ /' > /etc/apt/sources.list.d/devel:kubic:libcontainers:stable.list && \
curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_10/Release.key | apt-key add - && \
apt-get update && \
apt-get -t buster-backports install -y --no-install-recommends libseccomp-dev podman && \
apt-get clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* && \
molecule --version && \
molecule drivers && \
python3 -m pip check && \
yamllint --version && \
which docker && \
podman --version && \
git --version
# Use a more convenient default command than the Python base image
CMD /bin/bash
# running cli commands adds a minimal level fail-safe protection
# against a broken image.
# We cannot run `docker --version` because it requires a server running and
# we do not have one, being up to the image user to mount a socket or to
# define a remote DOCKER_HOST to use.