FROM docker:27-cli

RUN apk add --no-cache bash curl git docker-compose

COPY update.sh /update.sh
RUN chmod +x /update.sh

EXPOSE 9111

CMD ["bash", "/update.sh"]
