File size: 195 Bytes
45d5bdf
 
 
 
2380e4d
45d5bdf
 
1
2
3
4
5
6
7
FROM node:18
RUN git clone https://github.com/charan200415/log_apis /app
WORKDIR /app
RUN npm install
ENV SERVER_URL="https://charan5775-log-apis.hf.space/"
EXPOSE 3000
CMD [ "node", "index.js" ]