-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile-python2
44 lines (39 loc) · 1.47 KB
/
Dockerfile-python2
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
FROM alpine:3.6
COPY requirements.txt /requirements.txt
# Install Certificates
RUN apk update && apk add ca-certificates curl
RUN mkdir -p /usr/local/share/ca-certificates
RUN curl https://nexus-registry.infra.online.net/repository/raw-registry/security/ca.pem >/usr/local/share/ca-certificates/scaleway.crt
RUN update-ca-certificates
ENV REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt
RUN echo "===> Installing sudo to emulate normal OS behavior..." && \
apk --update add sudo bind-tools && \
\
\
echo "===> Adding Python runtime..." && \
apk --update add python py-pip openssl ca-certificates && \
apk --update add --virtual build-dependencies \
python-dev libffi-dev openssl-dev build-base && \
pip install --upgrade pip cffi && \
\
\
echo "===> Installing Ansible..." && \
pip install ansible && \
\
\
echo "===> Removing package list..." && \
apk del build-dependencies && \
rm -rf /var/cache/apk/* && \
\
\
echo "===> Adding hosts for tests..." && \
mkdir -p /etc/ansible && \
echo 'localhost' > /etc/ansible/hosts && \
\
\
echo "===> Install requirements..." && \
mkdir -p /app && \
pip install -r /requirements.txt
WORKDIR /app
# default command: display Ansible version
CMD [ "ansible-playbook", "--version" ]