skip to Main Content

Vite + React Docker

I'm trying to run my vite+react app using the docker container, the code is running fine but unfortunately, it's not opening in localhost 3000 DockerFile FROM node:18-alpine EXPOSE 3000 WORKDIR /react-vite-app COPY package.json . RUN yarn install COPY . .…

VIEW QUESTION
Back To Top
Search