Spaces:
Paused
Paused
File size: 416 Bytes
0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad 0e0dd73 d7335ad | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # --- CHANGED: Upgraded to Node 20 to satisfy Next.js requirements ---
FROM node:20-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the app code
COPY . .
# Build the Next.js app
RUN npm run build
# Set the port to 7860 (Required by Hugging Face)
ENV PORT=7860
# Expose the port
EXPOSE 7860
# Start the application
CMD ["npm", "start"]
|