11 lines
209 B
Docker
11 lines
209 B
Docker
FROM public.ecr.aws/docker/library/alpine:3.21
|
|
|
|
RUN apk add --no-cache grype bash
|
|
|
|
WORKDIR /usr/src
|
|
|
|
COPY entrypoint.sh .
|
|
|
|
RUN chmod +x /usr/src/entrypoint.sh
|
|
ENTRYPOINT ["bash","-c","/usr/src/entrypoint.sh"]
|