2023-09-20 17:43:03 +02:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
2023-09-21 08:25:40 +02:00
|
|
|
RUN zypper --non-interactive update
|
|
|
|
RUN zypper --non-interactive install osc
|
|
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
|
2023-09-20 17:43:03 +02:00
|
|
|
COPY hello.sh /hello.sh
|
2023-09-21 08:37:57 +02:00
|
|
|
ENTRYPOINT ["/hello.sh"]
|