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