Nexus-New / Dockerfile
Severian's picture
Update Dockerfile
abe8902
raw
history blame contribute delete
No virus
240 Bytes
# 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"]