It's baseball, not ghostball :)

This commit is contained in:
2022-11-12 01:00:24 -06:00
parent 512b3b05d2
commit a774d0a0fc
4 changed files with 7 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
# Copyright 2022 - c0de <c0de@c0de.dev>
# Licensed under the MIT License (https://opensource.org/licenses/MIT)
# Build with: docker build -t ghotballbot:<version> .
# Build with: docker build -t baseballbot:<version> .
# Run with: docker run -it
FROM python:3.10-alpine3.16 AS build
@@ -13,6 +13,6 @@ COPY . .
FROM build AS run
ENV discord_token ""
ENV database_path "/tmp/ghostball.db"
ENV database_path "/tmp/baseball.db"
CMD ["python", "/app/main.py"]