loc commited on
Commit
6b5697e
Β·
verified Β·
1 Parent(s): 8cb0db1

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -3,7 +3,7 @@ FROM node:18
3
  WORKDIR /app
4
 
5
  RUN --mount=type=secret,id=CLONE,mode=0444,required=true \
6
- git clone $(cat /run/secrets/CLONE)
7
 
8
  RUN npm install
9
 
 
3
  WORKDIR /app
4
 
5
  RUN --mount=type=secret,id=CLONE,mode=0444,required=true \
6
+ git clone $(cat /run/secrets/CLONE) .
7
 
8
  RUN npm install
9