# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 FROM public.ecr.aws/bitnami/node:latest RUN mkdir -p /home/node/app/node_modules WORKDIR /home/node/app COPY package*.json ./ RUN npm install COPY . . EXPOSE 3001 CMD [ "npm", "start" ]