11 lines
222 B
Docker
11 lines
222 B
Docker
FROM opensuse/tumbleweed:latest
|
|
|
|
RUN zypper --non-interactive update
|
|
RUN zypper --non-interactive install osc
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
COPY hello.sh /hello.sh
|
|
|
|
# ENTRYPOINT ["/hello.sh"]
|
|
CMD ["/bin/bash"]
|