# Fetching the latest node image on alpine linux FROM node:current-alpine3.18 COPY ./node /web/node WORKDIR /web/node RUN npm install EXPOSE 8000 CMD [ "node", "server.js" ]