File size: 199 Bytes
dacd1f8
 
 
 
 
 
 
 
 
 
f137aaa
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:18

RUN apt-get update && apt-get install -y git

WORKDIR /chat

RUN --mount=type=secret,id=eeee git clone $(cat /run/secrets/eeee) .

COPY . .

RUN npm install

CMD ["npm", "run", "start"]