FROM node:18-alpine
WORKDIR /usr/src/app
COPY . .
RUN apt update && apt install -y sqlite3
CMD ["node", "index.js"]