# specify the node base image with your desired version node: FROM node:16 # replace this with your application's default port EXPOSE 11141 COPY / /home/node/app/ WORKDIR /home/node/app/server RUN npm install