HenzHosting/BlockChain
0
1 2 3# Use a lightweight Node.js image4FROM node:18-bullseye5 6# Set working directory7WORKDIR /app8 9RUN git clone https://github.com/yummi184/Blockchain-Clone.git /app10 11# Set correct permissions12RUN chmod -R 777 /app13 14# Install project dependencies15WORKDIR /app16RUN npm install17 18# Expose a port19EXPOSE 786020 21# Start the application22CMD ["node", "server.js"]