From 17f4c1d811894618a4276199b7a20893f0723582 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B4nio=20Miranda?= <150311249+seijinmark@users.noreply.github.com> Date: Sun, 27 Oct 2024 01:37:36 -0300 Subject: [PATCH 1/2] Create docker-image.yml --- .github/workflows/docker-image.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/docker-image.yml 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) From 047b6e9a548f67221f67e977d3888958df1cb777 Mon Sep 17 00:00:00 2001 From: mark Date: Sun, 27 Oct 2024 01:43:56 -0300 Subject: [PATCH 2/2] removed sqlite3==2.6.0 from requerements.txt because it its part of the native python lib --- requirements.txt | 1 - 1 file changed, 1 deletion(-) 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