FROM node:18-alpine
WORKDIR /usr/src/app
COPY . .
RUN npm install -s
EXPOSE ${APPLICATION_PORT}
CMD ["npm", "start"]
