woodpecker-xmpp/Dockerfile

9 lines
198 B
Docker
Raw Normal View History

2023-08-18 21:04:55 +00:00
FROM alpine:3.18.3
# We need bash for parameter arrays
RUN apk add --no-cache go-sendxmpp bash
# Include the main script
ADD --chmod=555 entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]