9 lines
263 B
Docker
9 lines
263 B
Docker
|
FROM opensuse/tumbleweed:latest
|
||
|
|
||
|
RUN zypper --non-interactive update
|
||
|
RUN zypper --non-interactive install osc expect obs-service-source_validator
|
||
|
RUN zypper --non-interactive clean --all
|
||
|
|
||
|
COPY osc_checkout /usr/bin/osc_checkout
|
||
|
RUN chmod +x /usr/bin/osc_checkout
|