forked from jessfraz/dockerfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jess Frazelle <[email protected]>
- Loading branch information
Showing
10 changed files
with
21 additions
and
17 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 |
---|---|---|
|
@@ -12,7 +12,7 @@ MAINTAINER Christian Koep <[email protected]> | |
|
||
RUN builddeps=' \ | ||
python-dev \ | ||
py-pip \ | ||
py2-pip \ | ||
musl-dev \ | ||
openssl-dev \ | ||
libffi-dev \ | ||
|
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 |
---|---|---|
|
@@ -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 | ||
|
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 |
---|---|---|
|
@@ -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" ] |
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 |
---|---|---|
|
@@ -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" ] |
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