chore: migrate to standard 4-workflow Gitea Actions pattern #5

Open
cloudix_mcp_server wants to merge 11 commits from fix/workflow-standard into master
Showing only changes of commit 45af418a38 - Show all commits
+11 -6
View File
@@ -1,10 +1,15 @@
FROM alpine:latest
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
RUN apk add --no-cache unrar && \
rm -rf /usr/lib/ruby/gems/*/cache/* \
/var/cache/apk/* \
/tmp/* \
/var/tmp/*
RUN apk add --no-cache wget g++ make && \
wget -q "https://www.rarlab.com/rar/unrarsrc-7.1.4.tar.gz" -O /tmp/unrar.tar.gz && \
tar xzf /tmp/unrar.tar.gz -C /tmp && \
cd /tmp/unrar && \
make -j$(nproc) && \
make install && \
cd / && \
rm -rf /tmp/unrar* && \
apk del wget g++ make && \
rm -rf /var/cache/apk/* /tmp/* /var/tmp/*
ENTRYPOINT [ "/bin/sh", "-c", "cd /data && /usr/bin/unrar" ]
ENTRYPOINT [ "/bin/sh", "-c", "cd /data && /usr/local/bin/unrar" ]