Skip to content

Commit

Permalink
fix py2
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Jan 11, 2017
1 parent 31c1084 commit 3c1634b
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 17 deletions.
2 changes: 1 addition & 1 deletion ansible/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ MAINTAINER Christian Koep <[email protected]>

RUN builddeps=' \
python-dev \
py-pip \
py2-pip \
musl-dev \
openssl-dev \
libffi-dev \
Expand Down
2 changes: 1 addition & 1 deletion awscli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apk --no-cache add \
groff \
less \
python \
py-pip \
py2-pip \
&& pip install awscli \
&& mkdir -p /root/.aws \
&& { \
Expand Down
2 changes: 1 addition & 1 deletion certbot/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN apk --no-cache add \
py-mock \
py-openssl \
py-parsedatetime \
py-pip \
py2-pip \
py-requests \
py-rfc3339 \
py-setuptools \
Expand Down
2 changes: 1 addition & 1 deletion cli53/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM alpine:latest
RUN apk --no-cache add \
ca-certificates \
python \
py-pip \
py2-pip \
&& pip install cli53

ENTRYPOINT [ "cli53" ]
2 changes: 1 addition & 1 deletion couchpotato/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ RUN apk add --no-cache \
openssl-dev \
python \
python-dev \
py-pip \
py2-pip \
&& rm -rf /var/lib/apt/lists/*

RUN pip install \
Expand Down
2 changes: 1 addition & 1 deletion dcos-cli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <[email protected]>
RUN apk --no-cache add \
ca-certificates \
python \
py-pip \
py2-pip \
&& pip install dcoscli

# path to the DCOS CLI binary
Expand Down
2 changes: 1 addition & 1 deletion gcalcli/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ENV HOME /home/gcalcli
RUN apk --no-cache add \
python \
python-dev \
py-pip \
py2-pip \
build-base \
&& adduser -S gcalcli \
&& chown -R gcalcli $HOME \
Expand Down
2 changes: 1 addition & 1 deletion httpie/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <[email protected]>
RUN apk --no-cache add \
ca-certificates \
python \
py-pip \
py2-pip \
&& pip install httpie httpie-unixsocket

ENTRYPOINT [ "http" ]
20 changes: 12 additions & 8 deletions imagemin/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,21 @@
# --entrypoint bash \
# jess/imagemin
#
FROM alpine:latest
FROM node:alpine
MAINTAINER Jessie Frazelle <[email protected]>

RUN apk --no-cache add \
autoconf \
automake \
build-base \
file \
libpng-dev \
nasm \
nodejs \
&& npm install --global imagemin-cli
libpng

RUN set -x \
&& apk add --no-cache --virtual .build-deps \
autoconf \
automake \
build-base \
libpng-dev \
nasm \
&& npm install --global imagemin-cli \
&& apk del .build-deps

CMD [ "imagemin", "--help" ]
2 changes: 1 addition & 1 deletion wee-slack/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ FROM alpine:latest
RUN apk add --no-cache \
ca-certificates \
python \
py-pip \
py2-pip \
weechat \
weechat-perl \
weechat-python
Expand Down

0 comments on commit 3c1634b

Please sign in to comment.