File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:3.11.6
1
+ FROM alpine:3.12.0
2
+
3
+ ARG ANSIBLE_VERSION=2.9.9-r0
2
4
3
5
ENV ANSIBLE_SSH_CONTROL_PATH /dev/shm/cp%%h-%%p-%%r
4
6
ENV ANSIBLE_INVENTORY inventory.yml
@@ -31,7 +33,8 @@ RUN addgroup -S ${CCD_GROUP} && \
31
33
RUN apk upgrade \
32
34
--no-cache && \
33
35
apk add \
34
- ansible=2.9.6-r0 \
36
+ ansible=${ANSIBLE_VERSION} \
37
+ py-pip \
35
38
bash \
36
39
curl \
37
40
libressl \
@@ -43,8 +46,8 @@ RUN apk upgrade \
43
46
44
47
COPY requirements.txt /var/run/requirements.txt
45
48
46
- RUN pip3 install --upgrade pip && \
47
- pip3 install --no-cache-dir -r /var/run/requirements.txt
49
+ # RUN pip3 install --upgrade pip && \
50
+ # pip3 install --no-cache-dir -r /var/run/requirements.txt
48
51
49
52
RUN mkdir -p ${CDD_DEBUG_FOLDER} ${CDD_BAKED_FOLDER} ${CDD_PLAY_FOLDER} && chown -R ${CCD_USER}:${CCD_GROUP} ${CDD_BASE_FOLDER}
50
53
You can’t perform that action at this time.
0 commit comments