Spaces:
Sleeping
Sleeping
FROM python:3.10-alpine AS base-action | |
RUN pip3 install -U setuptools pip bandit | |
COPY entrypoint.sh /entrypoint.sh | |
RUN chmod +x /entrypoint.sh | |
ENTRYPOINT ["sh","/entrypoint.sh"] | |