2021-06-23 04:17:03 +02:00
|
|
|
# Container image that runs your code
|
2021-06-24 20:56:59 +02:00
|
|
|
FROM python:3
|
2021-06-23 04:17:03 +02:00
|
|
|
|
|
|
|
# Copies your code file from your action repository to the filesystem path `/` of the container
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
|
|
|
|
RUN pip install flawfinder
|
|
|
|
|
|
|
|
# Code file to execute when the docker container starts up (`entrypoint.sh`)
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|