Skip to content

Commit

Permalink
Update to python 3.6
Browse files Browse the repository at this point in the history
Otherwise, extra_vars are empty
  • Loading branch information
lunascat committed Dec 6, 2017
1 parent 06be4f8 commit a78c434
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Pull base image
FROM alpine:3.4
FROM alpine:3.6
LABEL Description="Concourse Ansible resource" Vendor="SpringerNature Platform Engineering" Version="1.0"
MAINTAINER SpringerNature Platform Engineering platform-engineering@springernature.com

Expand All @@ -16,7 +16,7 @@ RUN ln -s /lib /lib64 \
xmlsec \
yaml \
libc6-compat \
python \
python3 \
libxml2 \
py-lxml \
py-pip \
Expand All @@ -28,20 +28,20 @@ RUN ln -s /lib /lib64 \
apk --upgrade add --no-cache --virtual \
build-dependencies \
build-base \
python-dev \
python3-dev \
libffi-dev \
openssl-dev \
linux-headers \
libxml2-dev

# Ansible installation
ADD requirements.txt /opt/
RUN pip install --upgrade --no-cache-dir -r /opt/requirements.txt
RUN pip3 install --upgrade --no-cache-dir -r /opt/requirements.txt

RUN apk del \
build-dependencies \
build-base \
python-dev \
python3-dev \
libffi-dev \
openssl-dev \
linux-headers \
Expand Down
2 changes: 1 addition & 1 deletion assets/out
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python3
# -*- encoding: utf-8 -*-
"""
Concourse out resource
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ dopy==0.3.7
pysphere==0.1.7
python-consul==0.7.1
f5-sdk==2.3.3
bigsuds==1.0.4
bigsuds==1.0.6
netaddr==0.7.19
boto==2.48.0
azure==2.0.0
Expand Down

0 comments on commit a78c434

Please sign in to comment.