diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml new file mode 100644 index 0000000..3f53646 --- /dev/null +++ b/.github/workflows/docker-image.yml @@ -0,0 +1,18 @@ +name: Docker Image CI + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +jobs: + + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + - name: Build the Docker image + run: docker build . --file Dockerfile --tag my-image-name:$(date +%s) diff --git a/requirements.txt b/requirements.txt index 6f341b0..dd039e0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,3 @@ discord.py==1.7.3 pypresence==4.2.0 discord-py-slash-command==1.0.7 python-dotenv==0.21.0 -sqlite3==2.6.0