2023-10-20 05:38:39 +02:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
|
|
|
RUN zypper --non-interactive update
|
2023-10-30 09:23:09 +01:00
|
|
|
RUN zypper --non-interactive install osc expect
|
2023-10-20 05:38:39 +02:00
|
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
|
2023-10-30 09:49:51 +01:00
|
|
|
#COPY test.sh /test.sh
|
|
|
|
COPY runner.sh /runner.sh
|
2023-10-31 06:12:58 +01:00
|
|
|
COPY osc_buildlog.sh /osc_buildlog.sh
|
|
|
|
COPY osc_checkout /osc_checkout
|
2023-10-25 05:12:36 +02:00
|
|
|
# RUN chmod +x /runner.sh
|
2023-10-30 09:49:51 +01:00
|
|
|
# ENTRYPOINT ["/test.sh"]
|
|
|
|
ENTRYPOINT ["/runner.sh"]
|