atikur-rabbi commited on
Commit
2136e1f
1 Parent(s): 1a4b097
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -5,6 +5,9 @@ RUN apt-get update && apt-get install -y curl
5
  RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
6
  RUN apt-get install -y nodejs
7
 
 
 
 
8
  # Create app directory
9
  WORKDIR /usr/src/app
10
 
 
5
  RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
6
  RUN apt-get install -y nodejs
7
 
8
+ # user root
9
+ USER root
10
+
11
  # Create app directory
12
  WORKDIR /usr/src/app
13