-
Notifications
You must be signed in to change notification settings - Fork 1
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 #22 from tblanarik/tblanarik/dockerize
Move to Docker instead of Azure Functions
- Loading branch information
Showing
10 changed files
with
101 additions
and
118 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,48 @@ | ||
# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy | ||
# More GitHub Actions for Azure: https://github.com/Azure/actions | ||
|
||
name: Build and deploy container app to Azure Web App - spotbot-docker | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
runs-on: 'ubuntu-latest' | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Log in to registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: https://index.docker.io/v1/ | ||
username: ${{ secrets.AzureAppService_ContainerUsername_630053f317634033aaa0862db4b07802 }} | ||
password: ${{ secrets.AzureAppService_ContainerPassword_71079aba47ee4c1196a01eaf134b3447 }} | ||
|
||
- name: Build and push container image to registry | ||
uses: docker/build-push-action@v3 | ||
with: | ||
push: true | ||
tags: index.docker.io/${{ secrets.AzureAppService_ContainerUsername_630053f317634033aaa0862db4b07802 }}/python:${{ github.sha }} | ||
file: ./Dockerfile | ||
|
||
deploy: | ||
runs-on: ubuntu-latest | ||
needs: build | ||
environment: | ||
name: 'production' | ||
url: ${{ steps.deploy-to-webapp.outputs.webapp-url }} | ||
|
||
steps: | ||
- name: Deploy to Azure Web App | ||
id: deploy-to-webapp | ||
uses: azure/webapps-deploy@v2 | ||
with: | ||
app-name: 'spotbot-docker' | ||
slot-name: 'production' | ||
publish-profile: ${{ secrets.AzureAppService_PublishProfile_e744ed7c6ffe4564a93b0e3c07ec1ed1 }} | ||
images: 'index.docker.io/${{ secrets.AzureAppService_ContainerUsername_630053f317634033aaa0862db4b07802 }}/python:${{ github.sha }}' |
This file was deleted.
Oops, something went wrong.
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,9 @@ | ||
# syntax=docker/dockerfile:1 | ||
|
||
FROM python:3.13 | ||
WORKDIR / | ||
COPY requirements.txt . | ||
RUN pip3 install -r requirements.txt | ||
COPY . . | ||
EXPOSE 50505 | ||
ENTRYPOINT ["gunicorn", "app:app"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import os | ||
from flask import Flask, request, make_response | ||
import logging | ||
import spotbot as sb | ||
import tables | ||
import discord_http | ||
app = Flask(__name__) | ||
endpoint = os.environ.get('SECRET_ENDPOINT') | ||
|
||
@app.route(f'/{endpoint}', methods=["POST"]) | ||
def run(): | ||
try: | ||
sb.SpotBot(request, tables.HamAlertTable(), discord_http.DiscordHttp()).process() | ||
except Exception as _excpt: | ||
logging.error(f"Exception occurred: {_excpt}") | ||
return make_response(f"Exception occurred: {_excpt}", 500) | ||
else: | ||
return make_response("Accepted", 202) | ||
|
||
''' | ||
Empty endpoint used for keeping the container on and loaded | ||
''' | ||
@app.route('/', methods=["GET"]) | ||
def always_on(): | ||
return make_response("OK", 200) | ||
|
||
if __name__ == "__main__": | ||
app.run() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
import os | ||
|
||
workers = int(os.environ.get('GUNICORN_PROCESSES', '2')) | ||
threads = int(os.environ.get('GUNICORN_THREADS', '4')) | ||
# timeout = int(os.environ.get('GUNICORN_TIMEOUT', '120')) | ||
bind = os.environ.get('GUNICORN_BIND', '0.0.0.0:50505') | ||
forwarded_allow_ips = '*' | ||
secure_scheme_headers = { 'X-Forwarded-Proto': 'https' } |
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,5 @@ | ||
azure-functions | ||
azure-data-tables | ||
requests | ||
pytz | ||
pytz | ||
flask | ||
gunicorn |