2023-10-20 11:38:39 +08:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
|
|
|
RUN zypper --non-interactive update
|
2023-10-30 16:23:09 +08:00
|
|
|
RUN zypper --non-interactive install osc expect
|
2023-10-20 11:38:39 +08:00
|
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
|
2023-10-30 16:49:51 +08:00
|
|
|
#COPY test.sh /test.sh
|
|
|
|
COPY runner.sh /runner.sh
|
2023-10-31 13:12:58 +08:00
|
|
|
COPY osc_buildlog.sh /osc_buildlog.sh
|
2023-10-31 15:00:38 +08:00
|
|
|
RUN chmod +x /osc_buildlog.sh
|
2023-10-31 13:12:58 +08:00
|
|
|
COPY osc_checkout /osc_checkout
|
2023-10-31 15:00:38 +08:00
|
|
|
RUN chmod +x /osc_checkout
|
2023-11-13 16:26:03 +08:00
|
|
|
# ENTRYPOINT ["/test.sh"]
|
|
|
|
ENTRYPOINT ["/runner.sh"]
|