CoolFace
Apppublic

Silver734/Coin-base

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile20 linesDownload Raw Back to root
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")