Browse Source

fix: Limited NodeJS version to v16.15

Owen Diffey 2 years ago
parent
commit
011e1a7847
2 changed files with 2 additions and 2 deletions
  1. 1 1
      backend/Dockerfile
  2. 1 1
      frontend/Dockerfile

+ 1 - 1
backend/Dockerfile

@@ -1,4 +1,4 @@
-FROM node:16
+FROM node:16.15
 
 
 RUN npm install -g nodemon
 RUN npm install -g nodemon
 
 

+ 1 - 1
frontend/Dockerfile

@@ -1,4 +1,4 @@
-FROM node:16
+FROM node:16.15
 
 
 RUN apt-get update
 RUN apt-get update
 RUN apt-get install nginx -y
 RUN apt-get install nginx -y