yazid138 3 years ago
parent
commit
a71a8f0c51
1 changed files with 3 additions and 3 deletions
  1. 3 3
      dockerfile

+ 3 - 3
dockerfile

@@ -27,12 +27,12 @@ COPY package.json /usr/src/app
 # Installing dependencies
 RUN npm install
 
-# Build App
-RUN npm run build
-
 # # Copying source files
 COPY . /usr/src/app
 
+# Build App
+RUN npm run build
+
 # Building app
 EXPOSE 3000