initial react

This commit is contained in:
2024-03-05 11:22:39 -05:00
parent 91fce540d4
commit ffe3157b3c
27 changed files with 18894 additions and 52 deletions

View File

@@ -0,0 +1,17 @@
# Use an official Node runtime as a parent image
FROM node:alpine
# Set the working directory in the container
WORKDIR /app
# Copy package.json and package-lock.json to work directory
COPY package*.json ./
# Install any dependencies
RUN npm install
# Bundle app source inside the docker image
COPY . .
# Command to run the app
CMD ["npm", "start"]