gitea-actions-test/Dockerfile
Alex Lau (AvengerMoJo) bd86c45e89
fix the typo actions
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-09-21 14:43:26 +08:00

10 lines
202 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"]