bc-docker-action/Dockerfile
Alex Lau (AvengerMoJo) e2ae5bab94
Some checks failed
OSC Pull Custom Image Demo / opensuse osc custom container checkout test (push) Failing after 1s
test build
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-10-30 16:49:51 +08:00

12 lines
286 B
Docker

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