FROM node:18-alpine WORKDIR /usr/src/app COPY . . RUN apk update && apk upgrade RUN apk add --no-cache sqlite RUN npm install RUN npm install --save sqlite3 CMD ["node", "index.js"]