FROM alpine

RUN apk update && apk add bash
COPY run.sh /app/run.sh
RUN chmod +x /app/run.sh

CMD ["/app/run.sh"]