kelvin / Dockerfile
akorede1's picture
Create Dockerfile
852587a verified
raw
history blame contribute delete
No virus
279 Bytes
FROM quay.io/suhailtechinfo/suhail-v2
USER node
RUN git clone https://github.com/lyfe00011/whatsapp-bot-md home/node/blue
WORKDIR /home/node/blue
RUN chmod -R 777 /home/node/blue/
RUN yarn install && yarn add http
COPY server.js .
COPY start.sh .
CMD ["bash","start.sh" ]