mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-12-08 14:22:40 +01:00
@@ -12,7 +12,7 @@ MAINTAINER Christian Koep <christian.koep@fom-net.de>
|
|||||||
|
|
||||||
RUN builddeps=' \
|
RUN builddeps=' \
|
||||||
python-dev \
|
python-dev \
|
||||||
py-pip \
|
py2-pip \
|
||||||
musl-dev \
|
musl-dev \
|
||||||
openssl-dev \
|
openssl-dev \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ RUN apk --no-cache add \
|
|||||||
groff \
|
groff \
|
||||||
less \
|
less \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py2-pip \
|
||||||
&& pip install awscli \
|
&& pip install awscli \
|
||||||
&& mkdir -p /root/.aws \
|
&& mkdir -p /root/.aws \
|
||||||
&& { \
|
&& { \
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ RUN apk --no-cache add \
|
|||||||
py-mock \
|
py-mock \
|
||||||
py-openssl \
|
py-openssl \
|
||||||
py-parsedatetime \
|
py-parsedatetime \
|
||||||
py-pip \
|
py2-pip \
|
||||||
py-requests \
|
py-requests \
|
||||||
py-rfc3339 \
|
py-rfc3339 \
|
||||||
py-setuptools \
|
py-setuptools \
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ FROM alpine:latest
|
|||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py2-pip \
|
||||||
&& pip install cli53
|
&& pip install cli53
|
||||||
|
|
||||||
ENTRYPOINT [ "cli53" ]
|
ENTRYPOINT [ "cli53" ]
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ RUN apk add --no-cache \
|
|||||||
openssl-dev \
|
openssl-dev \
|
||||||
python \
|
python \
|
||||||
python-dev \
|
python-dev \
|
||||||
py-pip \
|
py2-pip \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
|
|
||||||
RUN pip install \
|
RUN pip install \
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <jess@linux.com>
|
|||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py2-pip \
|
||||||
&& pip install dcoscli
|
&& pip install dcoscli
|
||||||
|
|
||||||
# path to the DCOS CLI binary
|
# path to the DCOS CLI binary
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ ENV HOME /home/gcalcli
|
|||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
python \
|
python \
|
||||||
python-dev \
|
python-dev \
|
||||||
py-pip \
|
py2-pip \
|
||||||
build-base \
|
build-base \
|
||||||
&& adduser -S gcalcli \
|
&& adduser -S gcalcli \
|
||||||
&& chown -R gcalcli $HOME \
|
&& chown -R gcalcli $HOME \
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ MAINTAINER Jessie Frazelle <jess@linux.com>
|
|||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py2-pip \
|
||||||
&& pip install httpie httpie-unixsocket
|
&& pip install httpie httpie-unixsocket
|
||||||
|
|
||||||
ENTRYPOINT [ "http" ]
|
ENTRYPOINT [ "http" ]
|
||||||
|
|||||||
@@ -6,17 +6,21 @@
|
|||||||
# --entrypoint bash \
|
# --entrypoint bash \
|
||||||
# jess/imagemin
|
# jess/imagemin
|
||||||
#
|
#
|
||||||
FROM alpine:latest
|
FROM node:alpine
|
||||||
MAINTAINER Jessie Frazelle <jess@linux.com>
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
||||||
|
|
||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
autoconf \
|
|
||||||
automake \
|
|
||||||
build-base \
|
|
||||||
file \
|
file \
|
||||||
libpng-dev \
|
libpng
|
||||||
nasm \
|
|
||||||
nodejs \
|
RUN set -x \
|
||||||
&& npm install --global imagemin-cli
|
&& 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" ]
|
CMD [ "imagemin", "--help" ]
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ FROM alpine:latest
|
|||||||
RUN apk add --no-cache \
|
RUN apk add --no-cache \
|
||||||
ca-certificates \
|
ca-certificates \
|
||||||
python \
|
python \
|
||||||
py-pip \
|
py2-pip \
|
||||||
weechat \
|
weechat \
|
||||||
weechat-perl \
|
weechat-perl \
|
||||||
weechat-python
|
weechat-python
|
||||||
|
|||||||
Reference in New Issue
Block a user