简体   繁体   中英

Could not find required file index.html in react js

Hi I am working in react application. I have deployed app in kube.netes. I have below folder structure in react app

文件夹结构

Below is my Dockerfile

# Fetching the latest node image on apline linux
FROM node:alpine AS development

# Declaring env
ENV NODE_ENV development

# Setting up the work directory
WORKDIR /al.web

# Installing dependencies
RUN pwd
RUN ls
COPY ./al.web/package.json /al.web
RUN npm install

# Copying all the files in our project
COPY . .

# Starting our application
CMD npm start

When I run the application in kube.netes I get below error

运行容器时的错误信息

I am not sure what configuration is wrong here. Can someone help me to fix the the issue. Any help would be appreciated. Thanks

if you want your react app to start use npm start in the project folder if your project root folder isn't installed properly use npx create-react-app appname

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM