All checks were successful
OSC Pull Custom Image Demo / opensuse osc custom container checkout test (push) Successful in 4s
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
15 lines
387 B
Docker
15 lines
387 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
|
|
COPY osc_buildlog.sh /osc_buildlog.sh
|
|
RUN chmod +x /osc_buildlog.sh
|
|
COPY osc_checkout /osc_checkout
|
|
RUN chmod +x /osc_checkout
|
|
# ENTRYPOINT ["/test.sh"]
|
|
ENTRYPOINT ["/runner.sh"]
|