Push-Message-Randomizer/Dockerfile

17 lines
382 B
Text
Raw Permalink Normal View History

2024-10-09 13:33:05 +02:00
FROM johnwalkerx/gitea-pull-request-create-plugin:latest AS gprcp
2024-10-09 00:59:29 +02:00
FROM alpine:latest
RUN apk add --no-cache bash yq
COPY entrypoint.sh /entrypoint.sh
COPY messages.yaml /messages.yaml
RUN chmod +x /entrypoint.sh
2024-10-09 13:33:05 +02:00
COPY --from=gprcp /gitea-pull-request-create-plugin /gitea-pull-request-create-plugin
RUN chmod +x /gitea-pull-request-create-plugin
2024-10-09 00:59:29 +02:00
ENTRYPOINT ["/entrypoint.sh"]