Cyber-Xploit-Main / Dockerfile
HenzHosting's picture
Update Dockerfile
cc4f981 verified
raw
history blame contribute delete
348 Bytes
# Use a lightweight Node.js image
FROM node:18-bullseye
# Set working directory
WORKDIR /app
RUN git clone https://github.com/EMMYHENZ-TECH/My-site.git /app
# Set correct permissions
RUN chmod -R 777 /app
# Install project dependencies
WORKDIR /app
RUN npm install
# Expose a port
EXPOSE 3000
# Start the application
CMD ["node", "server.js"]