Spaces:
Build error
Build error
# Use an official Node runtime as the base image | |
FROM node:18 | |
# Clone the GitHub repository | |
RUN git clone https://github.com/severian42/New-Nexus.git . | |
WORKDIR "New-Nexus" | |
RUN npm i | |
RUN npm run build | |
EXPOSE 3000 | |
CMD ["npm", "run", "start"] |