diff options
author | clarkzjw <[email protected]> | 2023-03-01 20:25:46 -0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2023-03-01 20:25:46 -0800 |
commit | 721d379b60b1a99a3f0e520ec9b31a6f0e1715a9 (patch) | |
tree | 832c20c2f15fba8e73c0e6de17e99eea48ff19ae /bot/Dockerfile | |
parent | 375c0d2544b20124a8cf497819006e01cd217225 (diff) | |
download | photo-721d379b60b1a99a3f0e520ec9b31a6f0e1715a9.tar.gz |
add Dockerfile
Diffstat (limited to 'bot/Dockerfile')
-rw-r--r-- | bot/Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/bot/Dockerfile b/bot/Dockerfile new file mode 100644 index 0000000..6e97ed6 --- /dev/null +++ b/bot/Dockerfile | |||
@@ -0,0 +1,10 @@ | |||
1 | FROM python:3.10 | ||
2 | |||
3 | WORKDIR /usr/src/app | ||
4 | |||
5 | COPY requirements.txt ./ | ||
6 | RUN pip install --no-cache-dir -r requirements.txt | ||
7 | |||
8 | COPY . . | ||
9 | |||
10 | CMD [ "python", "./bot.py" ] | ||