# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. # SPDX-License-Identifier: MIT-0 FROM node:10-alpine WORKDIR /usr/src/app COPY package*.json ./ RUN npm install COPY . . CMD ["node", "query-service.js"]