File size: 169 Bytes
b48fbc6
 
 
 
351bc43
b48fbc6
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
FROM node:22-bookworm

WORKDIR /app

RUN git clone https://github.com/miroslavpejic85/mirotalkbro.git .

RUN npm install

ENV PORT=7860

EXPOSE 7860

CMD ["npm","start"]