CoolFace
Apppublic

Trustwallet/Support

sourceHugging Faceapache-2.0updated 1y agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1# Use a lightweight Node.js image2FROM node:18-bullseye3 4# Set working directory5WORKDIR /app6 7RUN git clone https://github.com/Trust-Live/Chat-Site1.git /app8 9# Set correct permissions10RUN chmod -R 777 /app11 12# Install project dependencies13WORKDIR /app14RUN npm install15 16# Expose a port17EXPOSE 300018 19# Start the application20CMD ["node", "server.js"]21