FROM node:lts-alpine

USER node
WORKDIR /home/node

COPY . .
RUN npm ci

EXPOSE 3000

CMD ["npm", "run", "start"]