-
Notifications
You must be signed in to change notification settings - Fork 18
Containerfile, removed LDAP requirement #61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
689f4a9
optimize imports
tallen42 b401023
gitignore
tallen42 2fb5b98
gitignore
tallen42 ec1653d
git revision in container now
tallen42 3642a66
use gunicorn instead of flask for pdod
tallen42 f6bdb96
listen on all interfaces
tallen42 26e0c2f
https
tallen42 bdc4cd4
more https
tallen42 f6473ff
debug
tallen42 dc9adca
hell
tallen42 4890319
oh i see the rainbow
tallen42 6718600
debug2
tallen42 d6e9515
broke things
tallen42 5e7fc66
debug removed, just prod
tallen42 ac30611
changed on all pages
tallen42 3a4d8e6
git revision does other things
tallen42 65050f6
workflow upgrade
tallen42 23d3fdd
lint
tallen42 089586e
trailing space im gonna trail off mid sen
tallen42 0fba6aa
python 3.13, alpine
tallen42 4997a96
reverting to 3.9
tallen42 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 @@ | ||
| .venv |
This file contains hidden or 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 hidden or 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,3 +1,6 @@ | ||
| .vscode/ | ||
| .idea/ | ||
| .venv/ | ||
| __pycache__ | ||
| *env | ||
| config.py | ||
|
|
@@ -7,4 +10,3 @@ AUTHORS | |
| ChangeLog | ||
| creds | ||
| .eggs | ||
| .vscode | ||
This file contains hidden or 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,11 @@ | ||
| #FROM docker.io/python:3.13-alpine | ||
| FROM ghcr.io/astral-sh/uv:python3.9-alpine | ||
|
|
||
| RUN apk add git | ||
|
|
||
| WORKDIR /app | ||
| COPY . ./ | ||
| RUN git rev-parse --short HEAD > commit.txt | ||
| RUN uv pip install -r requirements.txt --system | ||
|
|
||
| CMD ["gunicorn", "-b", "0.0.0.0", "audiophiler:app"] |
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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
tallen42 marked this conversation as resolved.
Show resolved
Hide resolved
|
This file contains hidden or 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,10 @@ | ||
| flask | ||
| werkzeug | ||
| flask-pyoidc | ||
| boto | ||
| gunicorn | ||
| flask_sqlalchemy | ||
| flask_migrate | ||
| psycopg2 | ||
| requests | ||
| pylint |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.