From 06d15fcb03e57f4d567cbc5b17c5c8a02c75cd61 Mon Sep 17 00:00:00 2001 From: KieranRobson Date: Wed, 28 Sep 2022 06:56:39 +0100 Subject: [PATCH] chore: Update Docker Node version --- dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/dockerfile b/dockerfile index 700ad71..6a86107 100644 --- a/dockerfile +++ b/dockerfile @@ -1,11 +1,7 @@ -FROM node:16.16.0 - +FROM node:16.17.0 RUN mkdir -p /usr/hullcss/src WORKDIR /usr/hullcss/src - COPY package.json /usr/hullcss/src RUN npm install - COPY . /usr/hullcss/src - CMD ["node", "src/index.js"]