This is an automated email from the ASF dual-hosted git repository.
csantanapr pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-nodejs.git
The following commit(s) were added to refs/heads/master by this push:
new 1745626 Add graphicsmagick to the base images. (#109)
1745626 is described below
commit 17456261ec7b24c6d2ddc2c8c841562a37bb59fb
Author: rodric rabbah <[email protected]>
AuthorDate: Thu Feb 7 20:17:10 2019 -0500
Add graphicsmagick to the base images. (#109)
---
core/nodejs10Action/Dockerfile | 1 +
core/nodejs8Action/Dockerfile | 1 +
core/nodejsActionBase/Dockerfile | 6 +++++-
3 files changed, 7 insertions(+), 1 deletion(-)
diff --git a/core/nodejs10Action/Dockerfile b/core/nodejs10Action/Dockerfile
index 64e6ef5..56575d5 100644
--- a/core/nodejs10Action/Dockerfile
+++ b/core/nodejs10Action/Dockerfile
@@ -18,6 +18,7 @@
FROM node:10.15.0-stretch
RUN apt-get update && apt-get install -y \
imagemagick \
+ graphicsmagick \
unzip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /nodejsAction
diff --git a/core/nodejs8Action/Dockerfile b/core/nodejs8Action/Dockerfile
index 08ffc1c..25123f8 100644
--- a/core/nodejs8Action/Dockerfile
+++ b/core/nodejs8Action/Dockerfile
@@ -18,6 +18,7 @@
FROM node:8.15.0
RUN apt-get update && apt-get install -y \
imagemagick \
+ graphicsmagick \
unzip \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /nodejsAction
diff --git a/core/nodejsActionBase/Dockerfile b/core/nodejsActionBase/Dockerfile
index 2c8c04d..117c168 100644
--- a/core/nodejsActionBase/Dockerfile
+++ b/core/nodejsActionBase/Dockerfile
@@ -20,7 +20,11 @@ FROM buildpack-deps:trusty-curl
ENV DEBIAN_FRONTEND noninteractive
# Initial update and some basics.
-RUN apt-get update && apt-get install -y imagemagick && apt-get install -y
unzip
+RUN apt-get update && apt-get install -y \
+ imagemagick \
+ graphicsmagick \
+ unzip \
+ && rm -rf /var/lib/apt/lists/*
ADD . /nodejsAction
# COPY the package.json to root container, so we can install npm packages a
level up from user's packages, so user's packages take precedence