FROM node:22

WORKDIR /app

COPY package*.json /app/
COPY src/ /app/src/
COPY db/shop.db /app/shop.db

RUN npm install

CMD ["node", "src/index.js"]