10 lines
141 B
Docker
10 lines
141 B
Docker
FROM checkmarx/kics:gh-action
|
|
|
|
COPY ./entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
COPY ./ /app
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|