Skip to content

Commit

Permalink
Merge branch 'main' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Rivixer committed Aug 17, 2024
2 parents 00f9478 + 50bd70e commit 1e95fd8
Show file tree
Hide file tree
Showing 11 changed files with 366 additions and 92 deletions.
17 changes: 17 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Use the official Python image from the Docker Hub
FROM python:3.10.14-slim-bookworm

# Set the working directory in the container
WORKDIR /app

# Copy the requirements file into the container
COPY requirements.txt .

# Install the dependencies
RUN python -m pip install -r requirements.txt

# Copy the local files into the container
COPY . /app/

# Run the application
CMD ["python", "-u", "main.py"]
2 changes: 1 addition & 1 deletion sggwbot/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
__author__ = "Wiktor Jaworski"
__license__ = "MIT"
__copyright__ = "Copyright 2023, 2024 Wiktor Jaworski"
__version__ = "0.8.0-beta.5"
__version__ = "0.8.4"

from . import console, errors, utils
from .sggw_bot import SGGWBot
Loading

0 comments on commit 1e95fd8

Please sign in to comment.