mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 03:21:28 +01:00
fix py2
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
31c1084645
commit
3c1634b3d0
|
@ -12,7 +12,7 @@ MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
|||
|
||||
RUN builddeps=' \
|
||||
python-dev \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
musl-dev \
|
||||
openssl-dev \
|
||||
libffi-dev \
|
||||
|
|
|
@ -6,7 +6,7 @@ RUN apk --no-cache add \
|
|||
groff \
|
||||
less \
|
||||
python \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
&& pip install awscli \
|
||||
&& mkdir -p /root/.aws \
|
||||
&& { \
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -3,7 +3,7 @@ FROM alpine:latest
|
|||
RUN apk --no-cache add \
|
||||
ca-certificates \
|
||||
python \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
&& pip install cli53
|
||||
|
||||
ENTRYPOINT [ "cli53" ]
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <jess@linux.com>
|
|||
RUN apk --no-cache add \
|
||||
ca-certificates \
|
||||
python \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
&& pip install dcoscli
|
||||
|
||||
# path to the DCOS CLI binary
|
||||
|
|
|
@ -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 \
|
||||
|
|
|
@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <jess@linux.com>
|
|||
RUN apk --no-cache add \
|
||||
ca-certificates \
|
||||
python \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
&& pip install httpie httpie-unixsocket
|
||||
|
||||
ENTRYPOINT [ "http" ]
|
||||
|
|
|
@ -6,17 +6,21 @@
|
|||
# --entrypoint bash \
|
||||
# jess/imagemin
|
||||
#
|
||||
FROM alpine:latest
|
||||
FROM node:alpine
|
||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||
|
||||
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" ]
|
||||
|
|
|
@ -16,7 +16,7 @@ FROM alpine:latest
|
|||
RUN apk add --no-cache \
|
||||
ca-certificates \
|
||||
python \
|
||||
py-pip \
|
||||
py2-pip \
|
||||
weechat \
|
||||
weechat-perl \
|
||||
weechat-python
|
||||
|
|
Loading…
Reference in New Issue
Block a user