forked from elpaso/qgis-feed
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #92 from Xpirix/sentry_and_qgisfeed_image
Implement sentry, use pre-built docker image
- Loading branch information
Showing
8 changed files
with
101 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: Build and Push Docker Image | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
|
||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} # Using token is recommended | ||
|
||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v6 | ||
with: | ||
context: . | ||
file: dockerize/docker/Dockerfile | ||
push: true | ||
tags: | | ||
qgis/qgis-feed:${{ github.ref_name }} | ||
qgis/qgis-feed:latest | ||
- name: Log out from Docker Hub | ||
run: docker logout |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,32 +1,32 @@ | ||
aiohttp==3.8.1 | ||
aiosignal==1.2.0 | ||
asgiref==3.7.2 | ||
async-timeout==4.0.2 | ||
asynctest==0.13.0 | ||
attrs==21.4.0 | ||
certifi==2021.10.8 | ||
charset-normalizer==2.0.12 | ||
Django==4.2.8 | ||
django-appconf==1.0.3 | ||
django-extensions==3.1.5 | ||
django-imagekit==5.0.0 | ||
django-tinymce==3.6.1 | ||
django-user-visit==0.5.1 | ||
django-webpack-loader==2.0.1 | ||
frozenlist==1.3.0 | ||
geoip2==4.5.0 | ||
idna==3.3 | ||
maxminddb==2.2.0 | ||
multidict==6.0.2 | ||
pilkit==2.0 | ||
Pillow==6.1.0 | ||
psycopg2==2.9.9 | ||
pytz==2019.2 | ||
requests==2.27.1 | ||
six==1.12.0 | ||
sqlparse==0.4.4 | ||
typing-extensions==4.1.1 | ||
ua-parser==0.10.0 | ||
urllib3==1.26.9 | ||
user-agents==2.2.0 | ||
yarl==1.7.2 | ||
aiohttp~=3.8 | ||
aiosignal~=1.2 | ||
asgiref~=3.7 | ||
async-timeout~=4.0 | ||
asynctest~=0.13 | ||
attrs~=21.4 | ||
certifi~=2021.10 | ||
charset-normalizer~=2.0 | ||
Django~=4.2 | ||
django-appconf~=1.0 | ||
django-extensions~=3.1 | ||
django-imagekit~=5.0 | ||
django-tinymce~=3.6 | ||
django-user-visit~=0.5 | ||
django-webpack-loader~=2.0 | ||
frozenlist~=1.3 | ||
geoip2~=4.5 | ||
idna~=3.3 | ||
maxminddb~=2.2 | ||
multidict~=6.0 | ||
pilkit~=2.0 | ||
Pillow~=6.1 | ||
psycopg2~=2.9 | ||
pytz~=2019.2 | ||
requests~=2.27 | ||
sentry-sdk~=2.2 | ||
six~=1.12 | ||
sqlparse~=0.4 | ||
typing-extensions~=4.1 | ||
ua-parser~=0.10 | ||
user-agents~=2.2 | ||
yarl~=1.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
-r REQUIREMENTS.txt | ||
|
||
# For production only | ||
gunicorn==19.9.0 | ||
gunicorn~=22.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters