14 lines
187 B
Docker
14 lines
187 B
Docker
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"]
|