bc-docker-action/Dockerfile
Alex Lau (AvengerMoJo) 78d68b0790
Some checks failed
OSC Pull Custom Image Demo / opensuse osc custom container checkout test (push) Failing after 18s
Remove tag v1 recreate error image
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-10-25 11:12:36 +08:00

10 lines
231 B
Docker

FROM opensuse/tumbleweed:latest
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"]