-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[minor] remove token from registration page (#63)
* remove token from registration page * <bot> update setup.cfg * <bot> update requirements-tests.txt * <bot> update requirements.txt * fix flake8 * remove old import * remove old import 2 * remove reg_token import * remove auth test for username * <bot> update requirements-tests.txt * <bot> update requirements.txt * fix inst register test * <bot> update setup.cfg * <bot> update .gitignore * <bot> update dependencies*.log files(s) * new py-setup action doesn't generate requirements.txt files anymore * adjust docker container to use python 3.10 and install directly from setup.cfg * <bot> update dependencies*.log files(s) --------- Co-authored-by: github-actions <[email protected]>
- Loading branch information
Showing
22 changed files
with
101 additions
and
597 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
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 |
---|---|---|
|
@@ -127,3 +127,7 @@ dmypy.json | |
|
||
# Pyre type checker | ||
.pyre/ | ||
|
||
|
||
# wipac-dev-py-setup-action | ||
!dependencies*.log |
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,15 +1,18 @@ | ||
FROM python:3.9 | ||
FROM python:3.10 | ||
|
||
RUN useradd -m -U keycloak | ||
|
||
COPY requirements.txt ./ | ||
RUN pip install --no-cache-dir -r requirements.txt | ||
RUN mkdir /app && chown keycloak:keycloak /app | ||
|
||
WORKDIR /home/keycloak | ||
WORKDIR /app | ||
USER keycloak | ||
|
||
COPY . . | ||
|
||
ENV PYTHONPATH=/home/keycloak | ||
USER root | ||
|
||
RUN pip install -e . | ||
|
||
USER keycloak | ||
|
||
CMD ["python", "-m", "user_mgmt"] |
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 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,30 @@ | ||
aio-pika==9.3.0 | ||
aiormq==6.7.7 | ||
cachetools==5.3.1 | ||
certifi==2023.7.22 | ||
cffi==1.16.0 | ||
charset-normalizer==3.3.0 | ||
cryptography==41.0.4 | ||
dnspython==2.4.2 | ||
idna==3.4 | ||
ldap3==2.9.1 | ||
motor==3.3.1 | ||
multidict==6.0.4 | ||
pamqp==3.2.1 | ||
pyasn1==0.5.0 | ||
pycparser==2.21 | ||
PyJWT==2.8.0 | ||
pymongo==4.5.0 | ||
pypng==0.20220715.0 | ||
qrcode==7.4.2 | ||
requests==2.31.0 | ||
requests-futures==1.0.1 | ||
tornado==6.3.3 | ||
typing_extensions==4.8.0 | ||
Unidecode==1.3.7 | ||
urllib3==2.0.6 | ||
-e /app | ||
wipac-dev-tools==1.7.0 | ||
wipac-keycloak-rest-services==1.4.44 | ||
wipac-rest-tools==1.6.0 | ||
yarl==1.9.2 |
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
Oops, something went wrong.