the alpine image no longer allows installing to system python the fix is to target a virtual environment python3. Signed-off-by: vsoch <vsoch@users.noreply.github.com>
18 lines
638 B
Docker
18 lines
638 B
Docker
FROM alpine
|
|
|
|
# docker build -t vanessa/pull-request-action .
|
|
|
|
LABEL "com.github.actions.name"="Pull Request on Branch Push"
|
|
LABEL "com.github.actions.description"="Create a pull request when a branch is created or updated"
|
|
LABEL "com.github.actions.icon"="activity"
|
|
LABEL "com.github.actions.color"="yellow"
|
|
|
|
# Newer alpine we are not allowed to install to system python
|
|
RUN apk --no-cache add python3 py3-pip py3-virtualenv git bash && \
|
|
python3 -m venv /opt/env && \
|
|
/opt/env/bin/pip3 install requests
|
|
COPY pull-request.py /pull-request.py
|
|
|
|
RUN chmod u+x /pull-request.py
|
|
ENTRYPOINT ["/opt/env/bin/python3", "/pull-request.py"]
|