bc-docker-action/Dockerfile

11 lines
252 B
Docker
Raw Normal View History

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"]