gitea-actions-test/Dockerfile
Alex Lau (AvengerMoJo) b2136c96b7
update test
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-09-22 01:00:13 +08:00

9 lines
201 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"]