log_apis / Dockerfile
Charan5775's picture
Update Dockerfile
2380e4d verified
raw
history blame
195 Bytes
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" ]