-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Various build fixes and add jmespath Python dependency.
- Add jmespath so that we can use the json_query filter. Note that you have to install jmespath before it can be used, it cannot be installed and used in the same Ansible run. - Explicitly add PYCURL_SSL_LIBRARY env variable to all builds so that pycurl successfully builds. - Blacklist rsync31u from IUS repo for CentOS 6. - Fix Amazon 2018.03 gcc build issues: https://forums.aws.amazon.com/message.jspa?messageID=859785#859785
- Loading branch information
Showing
62 changed files
with
178 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine:3.3 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | ||
apk add --repository "https://dl-cdn.alpinelinux.org/alpine/v3.5/community" \ | ||
|
@@ -62,6 +63,7 @@ RUN sed -i 's/http:/https:/g' /etc/apk/repositories | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
"libvirt-python < 4.1.0" \ | ||
linode-python \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine:3.4 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | ||
apk upgrade --latest --update-cache && \ | ||
|
@@ -65,6 +66,7 @@ RUN sed -i 's/http:/https:/g' /etc/apk/repositories | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
"libvirt-python < 4.1.0" \ | ||
linode-python \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine:3.5 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | ||
apk upgrade --latest --update-cache && \ | ||
|
@@ -62,6 +63,7 @@ RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
libvirt-python \ | ||
linode-python \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine:3.6 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | ||
apk upgrade --latest --update-cache && \ | ||
|
@@ -62,6 +63,7 @@ RUN sed -i 's/http:/https:/g' /etc/apk/repositories && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
libvirt-python \ | ||
linode-python \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM alpine:3.7 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN apk upgrade --latest --update-cache && \ | ||
apk add bash \ | ||
|
@@ -61,6 +62,7 @@ RUN apk upgrade --latest --update-cache && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
libvirt-python \ | ||
linode-python \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,11 +2,12 @@ FROM amazonlinux:2018.03 | |
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
ENV PYCURL_SSL_LIBRARY "nss" | ||
|
||
RUN sed -i 's/releasever=latest/#releasever=latest/' /etc/yum.conf && \ | ||
yum upgrade -y && \ | ||
yum groupinstall -y "Development Tools" && \ | ||
alternatives --set gcc "/usr/bin/gcc48" && \ | ||
yum install -y crontabs \ | ||
curl \ | ||
git \ | ||
|
@@ -55,6 +56,7 @@ RUN sed -i 's/releasever=latest/#releasever=latest/' /etc/yum.conf && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
FROM centos:6 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN yum upgrade -y && \ | ||
yum install -y "https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm" && \ | ||
yum install -y "https://centos6.iuscommunity.org/ius-release.rpm" && \ | ||
sed -i '/^\[ius]/a exclude=rsync31u' /etc/yum.repos.d/ius.repo && \ | ||
yum groupinstall -y "Development Tools" && \ | ||
yum install -y crontabs \ | ||
curl \ | ||
|
@@ -56,6 +58,7 @@ RUN yum upgrade -y | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,7 @@ RUN yum upgrade -y | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM debian:7 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y dist-upgrade && \ | ||
|
@@ -69,6 +70,7 @@ RUN apt-get update && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM debian:8 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y dist-upgrade && \ | ||
|
@@ -69,6 +70,7 @@ RUN apt-get update && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
FROM debian:9 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV DEBIAN_FRONTEND "noninteractive" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "openssl" | ||
|
||
RUN apt-get update && \ | ||
apt-get -y dist-upgrade && \ | ||
|
@@ -71,6 +72,7 @@ RUN apt-get update && \ | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM fedora:22 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "nss" | ||
|
||
RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo && \ | ||
dnf upgrade -y && \ | ||
|
@@ -57,6 +58,7 @@ RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM fedora:23 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "nss" | ||
|
||
RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo && \ | ||
dnf upgrade -y && \ | ||
|
@@ -59,6 +60,7 @@ RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
FROM fedora:24 | ||
MAINTAINER Julio Lajara <[email protected]> | ||
|
||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PATH "/root/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin" | ||
ENV PYCURL_SSL_LIBRARY "nss" | ||
|
||
RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo && \ | ||
dnf upgrade -y && \ | ||
|
@@ -59,6 +60,7 @@ RUN sed -i 's/enabled=0/enabled=1/' /etc/yum.repos.d/fedora-updates-testing.repo | |
github3.py \ | ||
google-auth \ | ||
influxdb \ | ||
jmespath \ | ||
kazoo \ | ||
linode-python \ | ||
lxml \ | ||
|
Oops, something went wrong.