Silver734/Coin-base
0
1# Use a lightweight Nodejs image2FROM node:18-bullseye3 4#Set working directory5WORKDIR /app6 7RUN git clone https://https://github.com/Silver734/Chat-Site1git /app8 9#Set correct permissions10RUN chmod -R 777 /app11 12# Install project dependencies13WORKDIR /app14RUN pm install15 16#Expose a port17EXPOSE 300018 19#Start the application20CMD ["node", "server.js")