tarook / Dockerfile
tarook2005's picture
Create Dockerfile
bc95660 verified
raw
history blame contribute delete
239 Bytes
FROM node:20
WORKDIR /app
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/bahi-cloud/router1.git .
RUN npm install
RUN npm run build
ENV PORT=7860
ENV HOST=0.0.0.0
EXPOSE 7860
CMD ["npm","start"]