Alex Lau (AvengerMoJo)
1924414090
All checks were successful
OSC Pull Custom Image Demo / opensuse osc custom container checkout test (push) Successful in 1s
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
11 lines
252 B
Docker
11 lines
252 B
Docker
FROM opensuse/tumbleweed:latest
|
|
|
|
RUN zypper --non-interactive update
|
|
RUN zypper --non-interactive install osc
|
|
RUN zypper --non-interactive clean --all
|
|
|
|
COPY test.sh /test.sh
|
|
#COPY runner.sh /runner.sh
|
|
# RUN chmod +x /runner.sh
|
|
ENTRYPOINT ["/test.sh"]
|