CoolFace
Apppublic

exploitz3r0bbd/deepsite-v2

sourceHugging Facemitupdated 11mo agoView on Hugging Face
0likes
Dockerfile21 linesDownload Raw Back to root
1FROM node:20-alpine2USER root3 4USER 10005WORKDIR /usr/src/app6# Copy package.json and package-lock.json to the container7COPY --chown=1000 package.json package-lock.json ./8 9# Copy the rest of the application files to the container10COPY --chown=1000 . .11 12RUN npm install13RUN npm run build14 15# Expose the application port (assuming your app runs on port 3000)16EXPOSE 300017 18# Start the application19CMD ["npm", "start"]20 21