From 18a259bff1eee4a81028b618dabe817b55dc241f Mon Sep 17 00:00:00 2001 From: caioau Date: Thu, 13 Jan 2022 09:29:03 -0300 Subject: [PATCH] all the node actions in a single RUN Signed-off-by: caioau --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 11725312..5bd3468f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,8 @@ COPY src/ /app/ WORKDIR /app RUN npm ci --production \ && npm i -g nodemon \ -&& npm cache clear --force -RUN mv /app/node_modules/ /node_modules/ +&& npm cache clear --force \ +&& mv /app/node_modules/ /node_modules/ # Expose Ports EXPOSE 51820/udp