# nodejs container FROM node:latest # Create app directory WORKDIR /app # Bundle app source # COPY . /app # Install app dependencies # RUN npm install EXPOSE $API_PORT CMD [ "npm", "run", "start" ]