Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 282 Bytes
e7abd9e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM node:18
WORKDIR /app
# Install required global dependencies
RUN npm install -g react-scripts
# Copy package.json and package-lock.json
COPY package*.json ./
# Install project dependencies
RUN npm install
# Volume will be mounted here, no need for COPY
CMD ["npm", "start"] |