mirror of
https://github.com/MaxenceG2M/github-release-notifier.git
synced 2025-12-08 13:53:24 +00:00
Adapt configuration for tests purposes Justfile to simplificate flow
11 lines
197 B
Docker
11 lines
197 B
Docker
FROM python:3.10-alpine3.18
|
|
|
|
RUN pip install requests
|
|
WORKDIR /app
|
|
COPY notifier.py template.html /app/
|
|
|
|
# TODO Dev purporse
|
|
COPY conf.ini /app/conf.ini
|
|
|
|
ENTRYPOINT ["python3", "/app/notifier.py"]
|