This commit is contained in:
2023-04-28 15:15:15 -07:00
parent 0e6e2f40e3
commit 48ce5df1b4
6 changed files with 148 additions and 1 deletions

18
itchio/butler/Dockerfile Normal file
View File

@@ -0,0 +1,18 @@
# Container image that runs your code
FROM debian:stable-slim
RUN apt-get update && \
apt-get install -y \
unzip \
curl
RUN curl -L -o butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default
RUN unzip butler.zip && \
mv butler /usr/local/bin/butler && \
rm butler.zip
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]