2023-09-20 23:43:03 +08:00
|
|
|
FROM opensuse/tumbleweed:latest
|
|
|
|
|
2023-09-21 14:25:40 +08:00
|
|
|
RUN zypper --non-interactive update
|
|
|
|
RUN zypper --non-interactive install osc
|
|
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
|
2023-09-20 23:43:03 +08:00
|
|
|
COPY hello.sh /hello.sh
|
|
|
|
|
2023-09-21 14:25:40 +08:00
|
|
|
# ENTRYPOINT ["/hello.sh"]
|
|
|
|
CMD ["/bin/bash"]
|