From 28271655e18401e471bdf8be61c0464005ffa570 Mon Sep 17 00:00:00 2001 From: Brian Gough Date: Thu, 6 Dec 2018 08:19:39 +0000 Subject: [PATCH] avoid problems with caching of apt-get operations --- services/filestore/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/services/filestore/Dockerfile b/services/filestore/Dockerfile index 5f4f63aec0..49a9940d7f 100644 --- a/services/filestore/Dockerfile +++ b/services/filestore/Dockerfile @@ -1,5 +1,4 @@ FROM node:6.9.5 -RUN apt-get update # we also need imagemagick but it is already in the node docker image -RUN apt-get install -y --no-install-recommends ghostscript optipng +RUN apt-get update && apt-get install -y --no-install-recommends ghostscript optipng