gitea-actions-test/Dockerfile

11 lines
222 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 hello.sh /hello.sh
# ENTRYPOINT ["/hello.sh"]
CMD ["/bin/bash"]