2023-10-20 11:38:39 +08: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 11:21:23 +08:00
|
|
|
COPY test.sh /test.sh
|
|
|
|
#COPY runner.sh /runner.sh
|
2023-10-25 11:12:36 +08:00
|
|
|
# RUN chmod +x /runner.sh
|
2023-10-25 11:21:23 +08:00
|
|
|
ENTRYPOINT ["/test.sh"]
|