ctrlv-ince/gamezone-react-native
0
1# Use the official Node.js image2FROM node:183 4# Create and change to the app directory5WORKDIR /usr/src/app6 7# Copy application dependency manifests to the container image8# A wildcard is used to ensure both package.json AND package-lock.json are copied.9COPY package*.json ./10 11# Install dependencies12RUN npm install13 14# Copy local code to the container image15COPY . .16 17# Expose port (Hugging Face Spaces automatically sets the PORT env variable and expects 7860)18EXPOSE 786019 20# Run the web service on container startup21CMD [ "npm", "start" ]22 