bc-docker-action/Dockerfile

12 lines
237 B
Docker
Raw Normal View History

FROM opensuse/tumbleweed:latest
USER 0
RUN zypper --non-interactive update
RUN zypper --non-interactive install osc
RUN zypper --non-interactive clean --all
COPY runner.sh /runner.sh
RUN chmod +x /runner.sh
ENTRYPOINT ["/runner.sh"]