cps_b2c / Dockerfile
Rakshitjan's picture
Update Dockerfile
90a6e1f verified
raw
history blame contribute delete
193 Bytes
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
# Expose the port that Hugging Face expects (default is 7860)
EXPOSE 7860
CMD ["npm", "start"]