forgejo-release-drafter-action/Dockerfile
2025-08-21 09:25:59 +02:00

12 lines
270 B
Docker

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"]