# Fetching the latest node image on alpine linux FROM node:current-alpine3.18 COPY ./react /web/react WORKDIR /web/react RUN npm install EXPOSE 3000 CMD npm start