File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1- FROM hackerkid/zulip-archive
1+ FROM python:3-alpine
22
3- RUN mkdir -p /zulip-archive
3+ RUN mkdir -p /zulip-archive && apk update && apk add git curl
44
55COPY . /zulip-archive-action/
66
7- ENTRYPOINT ["/zulip-archive-action/entrypoint.sh" ]
7+ ENTRYPOINT ["sh" , " /zulip-archive-action/entrypoint.sh" ]
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ virtualenv -p python3 .
3030source bin/activate
3131pip3 install zulip==0.6.3
3232pip3 install pyyaml==5.2
33+ # crudini is not available as an Alpine pkg, so we install via pip.
34+ pip3 install crudini
3335
3436# GitHub pages API is in Preview mode. This might break in future.
3537auth_header=" Authorization: Bearer ${github_personal_access_token} "
You can’t perform that action at this time.
0 commit comments