Spaces:
Running
Running
File size: 401 Bytes
63c7991 6d62471 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# Use Node 22 as the base image
FROM node:22-alpine
# Set the working directory inside the container
WORKDIR /app
# Copy package.json and package-lock.json (if you have one)
COPY package*.json ./
# Install dependencies
RUN npm install
# Copy the rest of the application code
COPY . .
# Expose the port your React app runs on
EXPOSE 7860
# Command to run the application
CMD ["npm", "run", "dev"] |