@@ -1,4 +1,4 @@
-FROM node:14-alpine
+FROM node:16-alpine
RUN apk --no-cache add make
@@ -21,7 +21,7 @@ client.bot.on("ready", async () => {
logger.info("NoctBot is ready");
});
-client.bot.on("message", async m => {
+client.bot.on("messageCreate", async m => {
if (m.author.id == client.botUser.id)
return;
@@ -73,7 +73,7 @@ services:
- db-data:/var/lib/postgresql/data
adminer:
- image: adminer:4.8.0
+ image: adminer:latest
restart: unless-stopped
ports:
- 3030:8080
@@ -1,6 +1,6 @@
-RUN apk --no-cache add make
+RUN apk --no-cache add make libc6-compat
WORKDIR /app