NexusV1 commited on
Commit
c47762a
·
verified ·
1 Parent(s): 8b340cc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -2
Dockerfile CHANGED
@@ -9,12 +9,13 @@ WORKDIR /app
9
  # Copy package files
10
 
11
  # Install dependencies
12
- RUN npm install uuid express axios multer cors mime-types
13
 
14
  # Copy rest of the app
 
15
  RUN git clone https://github.com/ReirLair/newX.git /app
16
  COPY . .
17
-
18
  # Set 777 permissions on app directory
19
  RUN chmod -R 777 /app
20
 
 
9
  # Copy package files
10
 
11
  # Install dependencies
12
+ es
13
 
14
  # Copy rest of the app
15
+ RUN rm -rf /app/*
16
  RUN git clone https://github.com/ReirLair/newX.git /app
17
  COPY . .
18
+ RUN npm install uuid express axios multer cors mime-typ
19
  # Set 777 permissions on app directory
20
  RUN chmod -R 777 /app
21