FROM node:16-alpine

WORKDIR /app
ENV NODE_ENV=production

COPY . /app

RUN npm install --only=production

ENTRYPOINT npm start
EXPOSE 3000
