deepsite / Dockerfile
XciD's picture
XciD HF Staff
Update Dockerfile (#446)
f2c4e8a verified
raw
history blame
286 Bytes
FROM node:22
USER 1000
WORKDIR /usr/src/app
# Copy the rest of the application files to the container
COPY --chown=1000 . .
RUN npm install && npm run build
# Expose the application port (assuming your app runs on port 3000)
EXPOSE 3000
# Start the application
CMD ["npm", "start"]