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
2
2
3
- RUN mkdir -p /zulip-archive
3
+ RUN mkdir -p /zulip-archive && apk update && apk add git curl
4
4
5
5
COPY . /zulip-archive-action/
6
6
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 .
30
30
source bin/activate
31
31
pip3 install zulip==0.6.3
32
32
pip3 install pyyaml==5.2
33
+ # crudini is not available as an Alpine pkg, so we install via pip.
34
+ pip3 install crudini
33
35
34
36
# GitHub pages API is in Preview mode. This might break in future.
35
37
auth_header=" Authorization: Bearer ${github_personal_access_token} "
You can’t perform that action at this time.
0 commit comments