16 lines
531 B
Docker
16 lines
531 B
Docker
|
# Container image that runs your code
|
||
|
FROM alpine:3.21
|
||
|
|
||
|
# Install python/pip
|
||
|
ENV PYTHONUNBUFFERED=1
|
||
|
RUN apk add --update --no-cache python3 && \
|
||
|
ln -sf python3 /usr/bin/python && \
|
||
|
python3 -m ensurepip && \
|
||
|
pip3 install --no-cache --upgrade pip setuptools conventional-pre-commit
|
||
|
|
||
|
# Copies your code file from your action repository to the filesystem path `/` of the container
|
||
|
COPY entrypoint.sh /entrypoint.sh
|
||
|
|
||
|
# Code file to execute when the docker container starts up (`entrypoint.sh`)
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|