File size: 200 Bytes
de0933b
 
 
 
 
 
 
 
bcf0338
de0933b
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:18

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

COPY . /app

WORKDIR /app

RUN npm install axios express crypto bcrypt dotenv

RUN chmod -R 777 /app

EXPOSE 7860

CMD ["node", "server.js"]