From 865a1c5c75981f230cf1be469a0780041510cabb Mon Sep 17 00:00:00 2001 From: Alex J Lennon Date: Sat, 30 Jun 2018 18:47:47 +0100 Subject: [PATCH] Dockerfile.template: Use node image instead of node-slim Signed-off-by: Alex J Lennon --- Dockerfile.template | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.template b/Dockerfile.template index aeb9b28..93f5379 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -2,7 +2,7 @@ # see more about dockerfile templates here: http://docs.resin.io/deployment/docker-templates/ # and about resin base images here: http://docs.resin.io/runtime/resin-base-images/ # Note the node:slim image doesn't have node-gyp -FROM resin/%%RESIN_MACHINE_NAME%%-node:6-slim +FROM resin/%%RESIN_MACHINE_NAME%%-node:6 # use apt-get if you need to install dependencies, # for instance if you need ALSA sound utils, just uncomment the lines below.