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

11 lines
222 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"]