File size: 201 Bytes
c50d106
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM node:20
WORKDIR /code

Run git clone https://github.com/jarvisx17/dalle-2.git .

COPY . .

RUN npm install
Run npm install -g npm@10.5.2
RUN npm run build


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