Spaces:
Sleeping
Sleeping
File size: 271 Bytes
5c11c2e f133453 5c11c2e f133453 5c11c2e f133453 5c11c2e f133453 5c11c2e f133453 5c11c2e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
FROM node:16-slim
WORKDIR /app
# Copy package.json and package-lock.json
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy source code
COPY app.js ./
# Expose the port Hugging Face expects
EXPOSE 7860
# Start the application
CMD ["npm", "start"]
|