Add Dockerfile

This commit is contained in:
Robin Wieske 2025-08-21 09:25:59 +02:00
parent 237ce816cc
commit f18776feb4

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
FROM python:3.11-slim
# Install deps
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copy action code
COPY release_drafter.py /release_drafter.py
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]