16 lines
382 B
Docker
16 lines
382 B
Docker
FROM johnwalkerx/gitea-pull-request-create-plugin:latest AS gprcp
|
|
|
|
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
|
|
|
|
COPY --from=gprcp /gitea-pull-request-create-plugin /gitea-pull-request-create-plugin
|
|
|
|
RUN chmod +x /gitea-pull-request-create-plugin
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|