This repository has been archived by the owner on Feb 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from CoolCoderCarl/feature/FUNC_4
Remove familiar lists; fix issue while send message to everyone too much
- Loading branch information
Showing
4 changed files
with
53 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Git | ||
.git | ||
.github | ||
.gitignore | ||
.gitattributes | ||
|
||
# Docker | ||
docker-compose.yml | ||
docker-compose.yaml | ||
**/Dockerfile | ||
**/Containerfile* | ||
.docker | ||
.dockerignore | ||
|
||
# Meta | ||
README.md | ||
LICENSE | ||
|
||
# Configuration | ||
changelog.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
FROM python:3.9-alpine as builder | ||
|
||
WORKDIR /opt | ||
|
||
COPY ["bot.py", "/opt/"] | ||
COPY requirements.txt requirements.txt | ||
|
||
RUN pip3 install --no-cache-dir -r requirements.txt | ||
|
||
FROM builder | ||
|
||
CMD ["python3", "/opt/bot.py"] | ||
CMD ["python3", "bot.py"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters