Polarcraft/discordbot/Dockerfile

14 lines
187 B
Docker
Raw Permalink Normal View History

2023-08-11 11:43:14 +02:00
FROM node:18-alpine
WORKDIR /usr/src/app
COPY . .
2023-08-12 11:15:18 +02:00
RUN apk update && apk upgrade
RUN apk add --no-cache sqlite
2023-08-12 11:07:40 +02:00
2023-08-12 11:22:39 +02:00
RUN npm install
2023-08-12 11:26:33 +02:00
RUN npm install --save sqlite3
2023-08-12 11:22:23 +02:00
2023-08-11 11:43:14 +02:00
CMD ["node", "index.js"]