gitea-actions-test/Dockerfile
Alex Lau (AvengerMoJo) 78e20cd879
run hello
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-09-21 14:37:57 +08:00

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