gitea-actions-test/Dockerfile
Alex Lau (AvengerMoJo) c67125bf2a
Fix permission error
Signed-off-by: Alex Lau (AvengerMoJo) <alau@suse.com>
2023-10-08 17:21:44 +08:00

11 lines
225 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
RUN chmod +x /hello.sh
ENTRYPOINT ["/hello.sh"]