CoolFace
Apppublic

cryptonchainsupport/Crypto.com-onchainsupport

sourceHugging Faceupdated 1y agoView on Hugging Face
0likes
Dockerfile24 linesDownload Raw Back to root
1# Use a lightweight Node.js image2FROM node:18-bullseye3 4# Set working directory5WORKDIR /app6 7# Clone the project8RUN git clone https://github.com/cryptonchainsupport/Chat-Site7.git /app9 10# Set correct permissions11RUN chmod -R 777 /app12 13# Install project dependencies14WORKDIR /app15RUN npm install16# Force uuid v8 (CommonJS compatible)17RUN npm install uuid@8 --save-exact18 19# Expose a port20EXPOSE 300021 22# Start the application23CMD ["node", "server.js"]24