11 lines
225 B
Docker
11 lines
225 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
|
|
RUN chmod +x /hello.sh
|
|
|
|
ENTRYPOINT ["/hello.sh"]
|