This repository has been archived on 2024-08-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Keycloak_Notifier/Dockerfile
2024-02-05 06:11:53 +01:00

9 lines
121 B
Docker

FROM python:3
COPY . /
RUN \
pip install --no-cache-dir -U -r requirements.txt
CMD ["python3", "notifier.py"]