VIP / Dockerfile
api-ix's picture
Create Dockerfile
dc087fc verified
Raw
History Blame Contribute Delete
214 Bytes
FROM node:18
RUN apt-get update && apt-get install -y git
RUN git clone https://github.com/asmakev930h/DOMAIN.git /app
WORKDIR /app
RUN npm install
RUN chmod -R 777 /app
EXPOSE 7860
CMD ["node", "server.js"]