2023-10-20 05:38:39 +02:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
|
|
|
RUN zypper --non-interactive update
|
|
|
|
RUN zypper --non-interactive install osc
|
|
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
|
2023-10-25 05:21:23 +02:00
|
|
|
COPY test.sh /test.sh
|
|
|
|
#COPY runner.sh /runner.sh
|
2023-10-25 05:12:36 +02:00
|
|
|
# RUN chmod +x /runner.sh
|
2023-10-25 05:21:23 +02:00
|
|
|
ENTRYPOINT ["/test.sh"]
|