diff --git a/Dockerfile b/Dockerfile index def1a225a8dec0bb6967e54d3b0dbb56e9bfbea7..3b4b54c3463a8d8e1496b9ec2b7f5eab9cf9adb1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ #What image should our image be based off of? -FROM node:lts +FROM node:12 RUN mkdir -p /opt/nodeapp/node_modules && chown -R node:node /opt/nodeapp @@ -15,4 +15,4 @@ RUN npm ci --only=production COPY --chown=node:node . . #Chnage this if you want a different file to be run first instead -CMD [ "node", "index.js" ] \ No newline at end of file +CMD [ "node", "index.js" ]