File size: 152 Bytes
0454df1
 
 
 
 
 
d1e90a6
0454df1
1
2
3
4
5
6
7
8
FROM node:20
RUN git clone https://github.com/renqabs/bg
WORKDIR "bg"
RUN npm i 
RUN npm run build
ENV PORT 7860
EXPOSE 7860
CMD ["npm", "run", "start"]