From 317da97cd36e8c75917c5d1593a55d68389d09ad Mon Sep 17 00:00:00 2001 From: Lukas | AstroGD Date: Thu, 24 Nov 2022 12:29:52 +0100 Subject: [PATCH] Fix CI, update Readme --- Dockerfile | 2 +- README.md | 4 ++++ docker-compose.yml | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 144ce89..d54b947 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:18-alpine AS builder ENV NODE_ENV=production +# RUN apk add --no-cache python3 make g++ COPY build/package*.json ./ -RUN apk add --no-cache python3 make g++ RUN npm install --omit=dev FROM node:18-alpine AS app diff --git a/README.md b/README.md index ea032b8..717bc17 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@ # eu.astrogd.white-leopard A Discord bot that checks Discord channel names for banned words and prevents renaming of them +## Commands +### /logchanel [channel?] +Sets the channel where the bot will log if a channel meets the banned word criteria. If channel is omitted, the log channel will be disabled. + ## Environment variables | Name | Description | Required | Example | | :---------- | :------------------------------------------------------------ | :------: | :------------------ | diff --git a/docker-compose.yml b/docker-compose.yml index 60319fa..e34b63e 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,7 +1,7 @@ version: "2" services: app: - image: astrogd/white-leopard + image: astrogd/white-leopard:dev build: ./ depends_on: - database