mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
3c1634b3d0
Signed-off-by: Jess Frazelle <acidburn@google.com>
27 lines
497 B
Docker
27 lines
497 B
Docker
# Run imagemin in a container:
|
|
#
|
|
# docker run --rm -it \
|
|
# -v /etc/localtime:/etc/localtime:ro \
|
|
# -v $HOME/Pictures:/root/Pictures \
|
|
# --entrypoint bash \
|
|
# jess/imagemin
|
|
#
|
|
FROM node:alpine
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk --no-cache add \
|
|
file \
|
|
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" ]
|